tor-browser

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

out-of-flow-in-multicolumn-019-ref.html (449B)


      1 <!DOCTYPE html>
      2 <style>
      3  .multicol {
      4    column-count: 2;
      5    column-fill: auto;
      6    column-gap: 0px;
      7  }
      8  #outer {
      9    height: 120px;
     10    width: 100px;
     11  }
     12  #inner {
     13    width: 50px;
     14    column-gap: 16px;
     15    height: 100px;
     16    padding: 10px;
     17  }
     18  #ref {
     19    height: 400px;
     20    width: 25px;
     21    background-color: green;
     22  }
     23 </style>
     24 <div class="multicol" id="outer">
     25  <div class="multicol" id="inner">
     26    <div id="ref"></div>
     27  </div>
     28 </div>