tor-browser

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

font-size-math-001.tentative-ref.html (1073B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>font-size: math (reference)</title>
      5    <meta charset="utf-8">
      6    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      7    <style>
      8      .container {
      9          /* Ahem font does not have a MATH table so the font-size scale factor
     10             is always 0.71^{computed - inherited math script level} */
     11          font: 100px/1 Ahem;
     12      }
     13    </style>
     14  </head>
     15  <body>
     16    <div class="container">
     17      <div style="font-size: medium;">
     18        <div style="font-size: 1em;">X</div>
     19      </div>
     20      <div style="font-size: x-large;">
     21        <div style="font-size: 200%">
     22          <div style="font-size: 3em">
     23            <div style="font-size: smaller">
     24              <div style="font-size: 1em;">
     25                <div style="font-size: larger">
     26                  <div style="font-size: 4em">
     27                    <div style="font-size: 500%">X</div>
     28                  </div>
     29                </div>
     30              </div>
     31            </div>
     32          </div>
     33        </div>
     34      </div>
     35    </div>
     36  </body>
     37 </html>