tor-browser

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

letter-spacing-ref.html (640B)


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