tor-browser

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

row-track-sizing-004.html (718B)


      1 <!DOCTYPE html>
      2 <html>
      3 <link rel="help" href="https://drafts.csswg.org/css-grid-3">
      4 <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
      5 <link rel="match" href="row-track-sizing-004-ref.html">
      6 <style>
      7 .grid-lanes {
      8    display: grid-lanes;
      9    grid-lanes-direction: row;
     10    grid-template-rows: 20px 1fr 30%;
     11    width: 100px;
     12    height: 100px;
     13 }
     14 </style>
     15 <body>
     16  <p>Test that grid-lanes tracks are correctly sized with mixed definite, fr and %.</p>
     17  <div class="grid-lanes">
     18    <div style="background-color: orange; width: 100px;"></div>
     19    <div style="background-color: yellow; width: 100px;"></div>
     20    <div style="background-color: blue; width: 100px;"></div>
     21  </div>
     22 </body>
     23 </html>