tor-browser

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

line-height-ref.html (613B)


      1 <!DOCTYPE html>
      2 <title>CSS zoom applies to line-height when specified and inherited</title>
      3 <link rel="author" title="Chris Harrelson" href="mailto:chrishtr@chromium.org">
      4 <link rel="help" href="https://drafts.csswg.org/css-viewport/">
      5 <div style="line-height: 12px; font-size: 12px">
      6  Double-spaced<br>12px font text
      7 </div>
      8 
      9 <hr>
     10 
     11 <div style="line-height: 24px; font-size: 24px;">
     12  Double-spaced<br>12px font zoomed text
     13 </div>
     14 
     15 <hr>
     16 
     17 <div style="line-height: 12px; font-size: 12px">
     18  <div style="line-height: 24px; font-size: 24px">
     19    Double-spaced<br>12px font zoomed inherited text
     20  </div>
     21 </div>
     22 
     23 <hr>