tor-browser

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

column-reverse-002.html (840B)


      1 <!DOCTYPE html>
      2 <html>
      3 <link rel="help" href="https://drafts.csswg.org/css-grid-3">
      4 <link rel="match" href="column-reverse-002-ref.html">
      5 <link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com">
      6 <style>
      7 .grid-lanes {
      8    display: grid-lanes;
      9    flow-tolerance: 0;
     10    grid-template-columns: repeat(3, auto);
     11    gap: 10px;
     12    grid-lanes-direction: column-reverse;
     13 }
     14 </style>
     15 <body>
     16  <p>Test that track sizing is performed correctly with auto-sized tracks in the reverse direction.</p>
     17  <div class="grid-lanes">
     18    <div style="background: lavender;">Some larger words in this sentence</div>
     19    <div style="background: lightskyblue;">The cat cannot be separated from milk</div>
     20    <div style="background: lightgreen; width: min-content;">The cat still cannot be separated from milk</div>
     21  </div>
     22 </body>
     23 </html>