tor-browser

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

row-empty-grid-lanes-container-002.html (539B)


      1 <!DOCTYPE html>
      2 <html>
      3 <link rel="help" href="https://drafts.csswg.org/css-grid-3">
      4 <link rel="match" href="column-empty-grid-lanes-container-002-ref.html">
      5 <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
      6 <style>
      7 .grid-lanes {
      8    display: grid-lanes;
      9    grid-lanes-direction: row;
     10    background: gray;
     11    position: relative;
     12    flow-tolerance: 0;
     13    padding: 20px;
     14 }
     15 </style>
     16 <body>
     17  <p>Test that an empty grid-lanes container still renders padding.</p>
     18  <div class="grid-lanes"></div>
     19 </body>
     20 </html>