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-slice: 30; border-image-repeat: round; } </style> </head> <body> <h1>CSS border-image-repeat Property</h1> <div> This is div container. </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("div")[0]; function myFunction(){ x.style.borderImageRepeat = "stretch"; } </script> <p><strong>Note</strong>: Click on the button to change the 'border-image-repeat' from round to stretch.</p> </body> </html>
OUTPUT
×

Save as Private