tor-browser

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

line-gap-override-ref.html (566B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>Tests the line-gap-override descriptor of @font-face</title>
      4 <style>
      5 .target {
      6  position: absolute;
      7  font-size: 20px;
      8  top: 10px;
      9  left: 10px;
     10  width: 60px;
     11  height: 30px;
     12 }
     13 
     14 .character {
     15  display: inline-block;
     16  background-color: green;
     17  width: 1em;  /* Same as an 'X' in Ahem */
     18  height: 1em; /* Same as an 'X' in Ahem */
     19  position: absolute;
     20 }
     21 
     22 </style>
     23 <div class="target">
     24  <span class="character" style="top: 0.5em; left: 0"></span>
     25  <span class="character" style="top: 2.5em; left: 0"></span>
     26 </div>