Text_with_SVG_background-ref.html (451B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Reference File</title> 5 <link rel="author" title="windtale" href="mailto:windtale@163.com"> 6 <style type="text/css"> 7 #svgMain { 8 top: 100px; 9 left: 100px; 10 width: 200px; 11 height: 200px; 12 background: blue; 13 } 14 </style> 15 16 </head> 17 <body> 18 19 <svg id="svgMain"> 20 <text id="lblTxt" y="55">Text with SVG background</text> 21 </svg> 22 23 </body> 24 </html>