svg-as-border-image-3-ref.html (492B)
1 <!DOCTYPE html> 2 <html lang="en-US"> 3 <head> 4 <title>reference for svg-as-border-image</title> 5 <style> 6 div.border { 7 width: 10px; 8 height: 10px; 9 background-color: blue; 10 border: 10px solid; 11 border-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100px" height="100px" viewBox="0 0 100 100"><circle cx="50%" cy="50%" r="50%" fill="red"/></svg>') 5% stretch; 12 } 13 </style> 14 </head> 15 <body> 16 <div class="border" style="width:200px;height:100px"></div> 17 </body> 18 </html>