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> #borderimg1 { border: 20px solid transparent; padding: 25px; border-image: url(/pic.jpg) round; border-image-slice: 25%; } #borderimg2 { border: 20px solid transparent; padding: 20px; border-image: url(/pic.jpg) round; border-image-slice: 20%; } #borderimg3 { border: 15px solid transparent; padding: 15px; border-image: url(/pic.jpg) round; border-image-slice: 15%; } </style> </head> <body> <h1>The border-image-slice Property</h1> <p id="borderimg1">border-image-slice: 25%;</p> <p id="borderimg2">border-image-slice: 20%;</p> <p id="borderimg3">border-image-slice: 15%;</p> <p>Here is the image used:</p> <img src="/pic.jpg"> <p><strong>Note:</strong> Internet Explorer 10, and earlier versions, do not support the border-image-slice property.</p> </body> </html>