tor-browser

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

grid-abspos-staticpos-align-items-center-ref.html (309B)


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