border-image-width-008-ref.html (367B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>border-image with different widths</title> 4 <style> 5 #ref { 6 width: 360px; 7 height: 240px; 8 border-style: solid; 9 border-width: 40px 40px 20px 0px; 10 border-image-source: url("support/border.png"); 11 border-image-slice: 27; 12 } 13 </style> 14 <body> 15 <div id="ref"></div> 16 </body>