tor-browser

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

1133945-1-vertical-align.html (610B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="UTF-8">
      5    <title>Test for bug 1133945</title>
      6    <style>
      7      body { writing-mode: vertical-rl; line-height: 60px; }
      8      div { display: inline-block; width: 20px; height: 10px; background: blue; }
      9      .a { vertical-align: initial; }
     10      .b { vertical-align: middle; }
     11      .c { vertical-align: 0; }
     12      .d { vertical-align: -20px; }
     13      .e { vertical-align: 20px; }
     14    </style>
     15  </head>
     16  <body>
     17    a <div class="a"></div> b <div class="b"></div> c <div class="c"></div>
     18    d <div class="d"></div> e <div class="e"></div>
     19  </body>
     20 </html>