relative-positioning-1.html 556 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Bug 1055658 - Relative positioning for ruby</title>
  6. <link rel="stylesheet" href="common.css">
  7. <style>
  8. body {
  9. line-height: 80px;
  10. }
  11. rtc, rt {
  12. font-size: 100% !important;
  13. line-height: 1 !important;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <ruby style="position: relative;">
  19. <rb>base</rb>
  20. <rtc><rt>a<span style="position: relative; top: -10px;">b</span>c</rt></rtc>
  21. <rtc><div style="width: 50px; height: 0;"></div></rtc>
  22. </ruby>
  23. </body>
  24. </html>