tor-browser

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

width-980-ref.html (331B)


      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  width: 980px;
     11  position: relative;
     12 }
     13 #inner {
     14  position: absolute;
     15  top: 0;
     16  left: 0;
     17  width: 100px;
     18  height: 100px;
     19  background: green;
     20 }
     21 </style>
     22 <div id="container">
     23  <div id="inner"></div>
     24 </div>