tor-browser

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

column-balancing-with-span-and-oof-002.html (750B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-multicol-1/#column-span">
      3 <link rel="help" href="https://drafts.csswg.org/css-break/#breaking-rules">
      4 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
      5 <style>
      6  #multicol {
      7    column-count: 2;
      8    column-fill: auto;
      9    column-gap: 0px;
     10    width: 100px;
     11  }
     12  #abs {
     13    position: absolute;
     14    width: 50px;
     15    height: 100px;
     16    background: green;
     17  }
     18 </style>
     19 <p>Test passes if there is a filled green square.</p>
     20 <div id="multicol">
     21  <div style="position: relative;">
     22    <div  style="height: 100px; background: green;"></div>
     23    <div id="abs"></div>
     24  </div>
     25  <div style="column-span: all;"></div>
     26  <div style="height: 100px;"></div>
     27 </div>