svg-as-border-image-2-ref.html 492 B

12345678910111213141516171819
  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="240px" height="240px" viewBox="0 0 240 240"><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:100px;height:100px"></div>
  17. </body>
  18. </html>