PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> #borderimg { border: 25px solid transparent; padding: 25px; border-image-source: url(/pic.jpg); border-image-slice: 30; } </style> </head> <body> <h1>border-image-source property example</h1> <p>The border-image-source property specifies the image to be used as the border around an element:</p> <p id="borderimg">Hello pnldev!</p> <p>Here is the original image:</p> <img src="/pic.jpg"> <p><strong>Note:</strong> Internet Explorer 10, and earlier versions, do not support the border-image-source property.</p> </body> </html>