svg_element.rml 402 B

12345678910111213141516171819202122232425
  1. <rml>
  2. <head>
  3. <title>SVG Element</title>
  4. <link type="text/template" href="/assets/window.rml" />
  5. <style>
  6. body {
  7. width: 300px;
  8. height: 225px;
  9. margin: auto;
  10. left: -400px;
  11. top: -400px;
  12. }
  13. svg {
  14. display: block;
  15. max-width: 80%;
  16. max-height: 80%;
  17. margin: auto;
  18. }
  19. </style>
  20. </head>
  21. <body template="window">
  22. <svg src="tiger.svg"></svg>
  23. </body>
  24. </rml>