tor-browser

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

no-viewport.html (411B)


      1 <!DOCTYPE html>
      2 <style>
      3 html, body {
      4  margin: 0;
      5  width: 100%;
      6  height: 100%;
      7  scrollbar-width: none;
      8 }
      9 #container {
     10  min-width: 1600px; /* this value should be double of viewport width */
     11  min-height: 3000px;
     12  position: relative;
     13 }
     14 #inner {
     15  position: absolute;
     16  top: 0;
     17  right: 0;
     18  width: 100px;
     19  height: 100px;
     20  background: green;
     21 }
     22 </style>
     23 <div id="container">
     24  <div id="inner"></div>
     25 </div>