tor-browser

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

font-size-adjust-zero-2.html (675B)


      1 <!DOCTYPE HTML>
      2 <title>CSS Test: font-size-adjust: 0</title>
      3 <link rel="author" title="L. David Baron" href="https://dbaron.org/">
      4 <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
      5 <link rel="help" href="http://www.w3.org/TR/css3-fonts/#font-size-adjust-prop">
      6 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#collapsing-margins">
      7 <link rel="match" href="font-size-zero-2-ref.html">
      8 <style>
      9 /* spec ambiguous whether font-size-adjust influences line-height: normal */
     10 body { line-height: 1.2 }
     11 span { line-height: 0 }
     12 
     13 p { margin: 1em 0 }
     14 span.zero { font-size-adjust: 0 }
     15 </style>
     16 
     17 <p>before</p>
     18 <p><span class="zero">zero</span></p>
     19 <p>after</p>