tor-browser

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

line-height-oof-descendants-001.html (690B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Test: line-height is not affected by out-of-flow descendants</title>
      4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      5 <link rel="help" href="https://www.w3.org/TR/CSS21/visudet.html#line-height">
      6 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1426760">
      7 <link rel="match" href="line-height-oof-descendants-001-ref.html">
      8 <style>
      9 p {
     10  font-size: 20px;
     11  line-height: 0;
     12 }
     13 </style>
     14 <p><span style="position: absolute;"></span>Some paragraph</p>
     15 <p><span style="float: left;"></span>Some paragraph</p>
     16 <p><span style="position: fixed;"></span>Some paragraph</p>
     17 <p>Some other paragraph</p>