HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border: 15px solid transparent; padding: 15px; width: 250px; min-height: 60px; text-align: center; margin: 25px; border-image-source: url(car-left.png); border-image-repeat: repeat; } #point{ border-image-width: 30px; } #point1{ border-image-width: 50px; } </style> </head> <body> <h1>CSS border-image-width Property</h1> <h2>border-width: 30px;</h2> <div id="point"> border-image-width: 30px; </div> <h2>border-width: 50px;</h2> <div id="point1"> border-image-width: 50px; </div> </body> </html>
OUTPUT
×

Save as Private