tor-browser

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

column-track-sizing-004.html (696B)


      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="column-track-sizing-004-ref.html">
      6 <style>
      7 .grid-lanes {
      8    display: grid-lanes;
      9    grid-template-columns: 20px 1fr 30%;
     10    width: 100px;
     11    height: 100px;
     12 }
     13 </style>
     14 <body>
     15  <p>Test that grid-lanes tracks are correctly sized with mixed definite, fr and %.</p>
     16  <div class="grid-lanes">
     17    <div style="background-color: orange; height: 100px;"></div>
     18    <div style="background-color: yellow; height: 100px;"></div>
     19    <div style="background-color: blue; height: 100px;"></div>
     20  </div>
     21 </body>
     22 </html>