tor-browser

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

grid-template-rows-001-ref.html (400B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>CSS Grid: Reference for grid-template-rows interpolation</title>
      5  <style>
      6    .grid {
      7      display: grid;
      8      width: 400px;
      9      height: 400px;
     10      grid-gap: 10px;
     11      grid-template-rows: 60px 1fr;
     12    }
     13    span { border: 1px solid; }
     14  </style>
     15 </head>
     16 <body>
     17  <div class="grid">
     18    <span>row1</span>
     19    <span>row2</span>
     20  </div>
     21 </body>
     22 </html>