inline_formatting_02.rml 496 B

123456789101112131415161718192021222324252627
  1. <rml>
  2. <head>
  3. <title>Inline formatting 02</title>
  4. <link type="text/rcss" href="../style.rcss"/>
  5. <link rel="help" href="https://www.w3.org/TR/css-inline-3/#model" />
  6. <meta name="Description" content="Inline formatting context" />
  7. <style>
  8. body {
  9. width: 70dp;
  10. padding: 0;
  11. border: 20dp #ddd;
  12. }
  13. span {
  14. padding: 5px;
  15. border: 4px #ee0;
  16. margin: 5px 50px;
  17. }
  18. </style>
  19. </head>
  20. <body rmlui-debug-layout>
  21. <span>A B C D</span>
  22. <handle size_target="#document"/>
  23. </body>
  24. </rml>