tor-browser

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

grid-abspos-staticpos-align-self-self-end-ref.html (290B)


      1 <!DOCTYPE html>
      2 <html>
      3 <style>
      4 .grid {
      5  display: grid;
      6  border: 1px solid black;
      7  width: 100px;
      8  height: 100px;
      9 }
     10 .item {
     11  width: 50px;
     12  height: 50px;
     13  background-color: green;
     14  align-self: end;
     15 }
     16 </style>
     17 <body>
     18 <div class="grid">
     19  <div class="item"></div>
     20 </div>
     21 </body>
     22 </html>