text-language-01-ref.xhtml (729B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title>SVG, text, language...</title> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 <style type="text/css"> 6 body { 7 font-family: sans-serif; 8 font-size: 24px; 9 margin: 24px; 10 } 11 div { 12 height: 100px; 13 } 14 </style> 15 </head> 16 17 <body> 18 <div lang="en"> 19 <svg xmlns="http://www.w3.org/2000/svg" height="200"> 20 <text y="50">Hello world, 你好吗?</text> 21 </svg> 22 </div> 23 <div lang="en"> 24 <svg xmlns="http://www.w3.org/2000/svg" height="200"> 25 <text y="50">Hello world, 你好吗?</text> 26 </svg> 27 </div> 28 <div lang="en"> 29 <svg xmlns="http://www.w3.org/2000/svg" height="200"> 30 <text y="50">Hello world, 你好吗?</text> 31 </svg> 32 </div> 33 34 </body> 35 </html>