svg-as-border-image-1c.html (515B)
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 20" preserveAspectRatio="xMaxYMid slice"><rect x="0" y="0" width="10" height="5" fill="pink"/><rect x="30" y="15" width="10" height="5" fill="green"/></svg>'); 12 } 13 </style> 14 </head> 15 <body> 16 <div class="border"></div> 17 </body> 18 </html>