tor-browser

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

initial-scale-10-ref.html (382B)


      1 <!DOCTYPE html>
      2 <meta name="viewport" content="initial-scale=10,width=device-width">
      3 <style>
      4 html, body {
      5  margin: 0;
      6  width: 100%;
      7  height: 100%;
      8  scrollbar-width: none;
      9 }
     10 #container {
     11  position: relative;
     12 }
     13 #inner {
     14  position: absolute;
     15  top: 0;
     16  left: 0;
     17  width: 10px;
     18  height: 10px;
     19  background: green;
     20 }
     21 </style>
     22 <div id="container">
     23  <div id="inner"></div>
     24 </div>