svg-as-border-image-4-ref.html 387 B

12345678910111213141516171819
  1. <html>
  2. <head>
  3. <title>reference of svg-as-border-image</title>
  4. <style type="text/css">
  5. div {
  6. width: 100px;
  7. height: 100px;
  8. margin: 30px;
  9. border-width: 30px;
  10. border-style: solid;
  11. border-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><circle cx="50%" cy="50%" r="50%" fill="red"/></svg>') 5% stretch;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div></div>
  17. </body>
  18. </html>