tor-browser

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

viewport-units-001-print.html (594B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Viewport units in print account for margins</title>
      4 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1414600">
      5 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/5437">
      6 <link rel="help" href="https://drafts.csswg.org/css-values-4/#viewport-relative-lengths">
      7 <link rel="match" href="viewport-units-001-print-ref.html">
      8 <style>
      9  body { margin: 0 }
     10  div {
     11    box-sizing: border-box;
     12    width: 100vw;
     13    height: 100vh;
     14    border: 1px solid black;
     15  }
     16 </style>
     17 <div>I should not overflow to the next page.</div>