tor-browser

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

1941075-ref.html (291B)


      1 <!DOCTYPE html>
      2 <style>
      3 .container {
      4  position: relative;
      5  width: 100px;
      6  height: 100px;
      7  background: red;
      8 }
      9 .abs {
     10  width: 100px;
     11  height: auto;
     12  background: green;
     13  position: absolute;
     14  inset: 0;
     15  margin: auto;
     16 }
     17 </style>
     18 <div class="container">
     19  <div class="abs"></div>
     20 </div>