tor-browser

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

rem-in-monospace.html (556B)


      1 <!DOCTYPE html>
      2 <link rel=help href="https://drafts.csswg.org/css-fonts-4/#font-size-prop">
      3 <link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=623842">
      4 <link rel=author href="mailto:xiaochengh@chromium.org">
      5 <link rel=match href="./rem-in-monospace-ref.html">
      6 
      7 <p>The following two lines should look exactly the same.</p>
      8 
      9 <div style="font-family: monospace; font-size: 1.5em">
     10  <div style="font-family: sans-serif; font-size: 1rem">
     11    Text.
     12  </div>
     13 </div>
     14 
     15 <div style="font-family: sans-serif; font-size: 1rem">
     16  Text.
     17 </div>