tor-browser

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

1115916-1-vertical-metrics-ref.html (332B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <style>
      6 @font-face {
      7  font-family: ahem;
      8  src: url(../fonts/Ahem.ttf);
      9 }
     10 div {
     11  height: 100px;
     12  font: 16px/24px ahem;
     13 }
     14 #test1 {
     15  writing-mode: vertical-lr;
     16  text-orientation: upright;
     17 }
     18 </style>
     19 </head>
     20 <body>
     21 <div id="test1">
     22 <span>ab<br>cd</span>
     23 </div>
     24 </body>
     25 </html>