tor-browser

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

single-line-row-flex-fragmentation-044-ref.html (781B)


      1 <!DOCTYPE html>
      2 <html>
      3  <meta charset="utf-8">
      4  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      5  <link rel="author" title="Mozilla" href="https://www.mozilla.org/">
      6  <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
      7 
      8  <style>
      9  .multicol {
     10    column-count: 2;
     11    column-gap: 0;
     12    column-fill: auto;
     13    width: 200px;
     14    border: 5px solid gray;
     15    height: 0px;
     16  }
     17  .flexbox {
     18    position: relative
     19  }
     20  .flexbox > div {
     21    position: absolute;
     22    width: 50px;
     23    contain: size;
     24  }
     25  </style>
     26 
     27  <div class="multicol">
     28    <div class="flexbox">
     29      <div style="height: 10px; background: pink; left: 100px;"></div>
     30      <div style="height: 20px; background: orange; left: 50px;"></div>
     31    </div>
     32  </div>
     33 </html>