svg-as-border-image-1a.html 481 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="en-US">
  3. <head>
  4. <title>test of svg-as-border-image</title>
  5. <style>
  6. div.border {
  7. width: 10px;
  8. height: 10px;
  9. background-color: blue;
  10. border: 15px solid;
  11. border-image: 25% url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" ><rect x="0" y="0" width="10" height="10" fill="pink"/><rect x="30" y="30" width="10" height="10" fill="green"/></svg>');
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div class="border"></div>
  17. </body>
  18. </html>