Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS3 border-image-width Property</title> <style> .box { width: 300px; height: 150px; border: 15px solid transparent; border-image-source: url("/examples/images/border.png"); border-image-width: 10px; border-image-slice: 30; border-image-repeat: round; } </style> </head> <body> <div class="box"></div> </body> </html>