inline-node.html 868 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <link rel="match" href="reference/inline-node-ref.html" />
  5. <meta charset="UTF-8">
  6. <title>Inline Node styling test</title>
  7. <style>
  8. body {
  9. line-height: 200%;
  10. }
  11. .highlight {
  12. background-color: orange;
  13. border-radius: 6px;
  14. }
  15. .bg-highlight {
  16. background: magenta;
  17. color: white;
  18. border-radius: 6px;
  19. }
  20. .br-highlight {
  21. border: 2px solid green;
  22. border-radius: 6px;
  23. box-shadow: 4px 4px 4px darkgreen;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. Hello world <span class="highlight">this is some text</span> not in a box. <span class="bg-highlight">This text has a background</span> and <span class="br-highlight">this text has a shadow!</span>
  29. </body>
  30. </html>