tor-browser

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

grid-container-auto-margins-scrollbars-001-ref.html (308B)


      1 <!DOCTYPE html>
      2 <style>
      3 body {
      4   position: relative;
      5   height: 100vh;
      6 }
      7 .item1 {
      8   width: fit-content;
      9   margin: 0px auto;
     10 }
     11 .item2 {
     12   position: absolute;
     13   bottom: 0;
     14   background-color: cyan;
     15   height: 50px;
     16   width: 100%;
     17 }
     18 </style>
     19 <div class="item1">item1</div>
     20 <div class="item2">item2</div>