text-language-01-ref.xhtml 729 B

123456789101112131415161718192021222324252627282930313233343536
  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. <body>
  17. <div lang="en">
  18. <svg xmlns="http://www.w3.org/2000/svg" height="200">
  19. <text y="50">Hello world, 你好吗?</text>
  20. </svg>
  21. </div>
  22. <div lang="en">
  23. <svg xmlns="http://www.w3.org/2000/svg" height="200">
  24. <text y="50">Hello world, 你好吗?</text>
  25. </svg>
  26. </div>
  27. <div lang="en">
  28. <svg xmlns="http://www.w3.org/2000/svg" height="200">
  29. <text y="50">Hello world, 你好吗?</text>
  30. </svg>
  31. </div>
  32. </body>
  33. </html>