tor-browser

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

viewport-units-scrollbars-scroll-ltr-001-ref.html (438B)


      1 <!DOCTYPE html>
      2 <title>CSS Values and Units Test: Viewport units and scrollbars</title>
      3 <meta charset="UTF-8">
      4 <link rel="author"  title="fantasai" href="http://fantasai.inkedblade.net/contact">
      5 
      6 <style>
      7 html, body {
      8  margin: 0;
      9  padding: 0;
     10  width: 100%;
     11  height: 100%;
     12  box-sizing: border-box;
     13 }
     14 html {
     15  overflow: scroll;
     16 }
     17 body {
     18  background: white;
     19  border-right: solid green 4px;
     20  border-bottom: solid green 4px;
     21 }
     22 </style>