tor-browser

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

subgridded-axis-auto-repeater-003.html (488B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Grid Layout Test: Grid with a subgridded axis and an auto repeater as line name list</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-grid-2">
      7 <style>
      8  .grid {
      9    display: grid;
     10  }
     11  .subgrid {
     12    grid-template-columns: subgrid repeat(auto-fill, [x]);
     13  }
     14 </style>
     15 </head>
     16 <body>
     17  <div class="grid">
     18    <div class="grid subgrid">
     19      <div style="grid-column: x"></div>
     20    </div>
     21  </div>
     22 </body>
     23 </html>