tor-browser

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

grid-template-columns-001-ref.html (391B)


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