inline_formatting_03.rml 733 B

12345678910111213141516171819202122232425262728293031
  1. <rml>
  2. <head>
  3. <title>Inline formatting 03</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="Testing inline box split by resizing the document." />
  7. <style>
  8. body {
  9. width: 280px;
  10. padding: 0;
  11. border: 20dp #ddd;
  12. }
  13. span {
  14. color: red;
  15. padding: 5px;
  16. border: 4px #ee0;
  17. margin: 5px 50px;
  18. }
  19. .paragraph {
  20. margin: 15px 0;
  21. }
  22. </style>
  23. </head>
  24. <body rmlui-debug-layout>
  25. <div class="paragraph">In consectetur<span class="outer">A metus</span> Quisque maximus urna in congue placerat. In hac habitasse platea dictumst. Mauris a fringilla augue.</div>
  26. <handle size_target="#document"/>
  27. </body>
  28. </rml>