1415987-1-ref.html (511B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 div { 5 position: absolute; 6 top: 0; 7 left: 0; 8 } 9 10 #pt { 11 scale: 12; 12 } 13 14 #pp { 15 scale: 12; 16 } 17 18 </style> 19 </head> 20 <body> 21 <div> 22 <svg width="600px" height="600px"> 23 24 <text id="pp" x="10" y="16" font-size="12">some text</text> 25 <text id="pt" x="10" y="16" font-size="12">some text</text> 26 <rect fill="#DAD6CC" width="600" height="100"></rect> 27 <rect fill="#DAD6CC" width="120" height="400"></rect> 28 29 </svg> 30 </div> 31 </body></html>