background-stretch-1.html (395B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 div { 6 height: 30px; 7 width: 100px; 8 background-image: url("white-rect-with-viewbox.svg"); 9 background-repeat: no-repeat; 10 background-position: 30px; 11 background-size: 40px 30px; 12 background-color: yellow; 13 } 14 body { 15 background-color: black; 16 } 17 </style> 18 </head> 19 <body> 20 <div></div> 21 </body> 22 </html>