tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

relative-positioning-1.html (580B)


      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      font: 25px Ahem;
     10      line-height: 80px;
     11    }
     12    rtc, rt {
     13      font-size: 100% !important;
     14      line-height: 1 !important;
     15    }
     16  </style>
     17 </head>
     18 <body>
     19  <ruby style="position: relative;">
     20    <rb>base</rb>
     21    <rtc><rt>a<span style="position: relative; top: -10px;">b</span>c</rt></rtc>
     22    <rtc><div style="width: 100px; height: 0;"></div></rtc>
     23  </ruby>
     24 </body>
     25 </html>