tor-browser

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

multicol-fill-auto-block-children-003.html (973B)


      1 <!DOCTYPE html>
      2 <html>
      3  <meta charset="utf-8">
      4  <title>CSS Multi-column Layout Test: 'column-fill: auto' and height constrained of a multi-column container</title>
      5  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      6  <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
      7  <link rel="help" href="https://drafts.csswg.org/css-multicol/#cf">
      8  <link rel="match" href="multicol-fill-auto-block-children-003-ref.html">
      9  <meta name="assert" content="This test verifies that 'max-height' on multi-column container imposes constraint on column boxes' height.">
     10 
     11  <style>
     12  article {
     13    column-fill: auto;
     14    column-count: 2;
     15    width: 200px;
     16    /* Test max-height imposes constraint on column boxes' height. */
     17    max-height: 200px;
     18  }
     19  div {
     20    height: 400px;
     21    background-color: lightgreen;
     22  }
     23  </style>
     24 
     25  <p>This test passes if you see two green strips with equal height.</p>
     26  <article>
     27    <div></div>
     28  </article>
     29 </html>