tor-browser

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

grid-gap-010.html (636B)


      1 <!DOCTYPE HTML>
      2 <html><head>
      3  <meta charset="utf-8">
      4  <title>CSS Grid Test: Subgrids with empty tracks and column gap</title>
      5  <link rel="author" title="Matt Woodrow" href="mailto:mattwoodrow@apple.com">
      6  <link rel="help" href="https://drafts.csswg.org/css-grid-2">
      7  <link rel="match" href="grid-gap-010-ref.html">
      8 </head>
      9 <body>
     10 <div style="display:grid; grid-template-columns: auto 200px; width: 200px">
     11    <div style="display:grid; grid-template-columns: subgrid; gap: 100px; grid-column: span 2">
     12        <div style="width:100px; height: 100px; background-color: blue; grid-column: 2"></div>
     13    </div>
     14 </div>
     15 </body>
     16 </html>