vertical-decorations-1.html 425 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <style>
  6. div {
  7. font: 25px monospace;
  8. white-space: pre;
  9. overflow: hidden;
  10. text-overflow: ellipsis;
  11. border: 1px solid gray;
  12. padding: 5px;
  13. display: inline-block;
  14. vertical-align: top;
  15. }
  16. .vlr {
  17. writing-mode: vertical-lr;
  18. text-orientation: sideways-right;
  19. height: 10ch;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div class="vlr"><u>abcdefghijklm</u></div>
  25. </body>
  26. </html>