HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border: 15px solid transparent; padding: 15px; border-image-source: url(border.png); border-image-repeat: repeat; } #point{ border-image-slice: 30; } #point1{ border-image-slice: 50; } </style> </head> <body> <h1>CSS border-image-slice Property</h1> <h2>border-image-slice: 30;</h2> <div id="point"> border-image-slice: 30; </div> <h2>border-image-slice: 50;</h2> <div id="point1"> border-image-slice: 50; </div> </body> </html>
OUTPUT
×

Save as Private