dynamic-underline-vertical-align-quirks-2-ref.html 378 B

12345678910111213141516171819202122
  1. <html>
  2. <head>
  3. <style>
  4. .underline {
  5. text-decoration: underline;
  6. }
  7. .align-bottom {
  8. vertical-align: bottom;
  9. }
  10. .align-top {
  11. vertical-align: top;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <p class="underline">
  17. <span class="align-bottom">This line has only a bottom vertical align span.</span> <br />
  18. <span class="align-top">This line has a top vertical align span.</span>
  19. </p>
  20. </body>
  21. </html>