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.html (822B)


      1 <!DOCTYPE html>
      2 <title>
      3  Nested fragmentation for out-of-flow positioned elements create new columns.
      4 </title>
      5 <link rel="help" href="https://www.w3.org/TR/css-position-3/#abspos-breaking">
      6 <link rel="match" href="out-of-flow-in-multicolumn-019-ref.html">
      7 <style>
      8  .multicol {
      9    column-count: 2;
     10    column-fill: auto;
     11    column-gap: 0px;
     12  }
     13  #outer {
     14    height: 120px;
     15    width: 100px;
     16  }
     17  #inner {
     18    width: 50px;
     19    column-gap: 16px;
     20    height: 100px;
     21    padding: 10px;
     22  }
     23  .rel {
     24    position: relative;
     25    height: 160px;
     26  }
     27  .abs {
     28    position: absolute;
     29    top: 0px;
     30    height: 400px;
     31    width: 25px;
     32    background-color: green;
     33  }
     34 </style>
     35 <div class="multicol" id="outer">
     36  <div class="multicol" id="inner">
     37    <div class="rel">
     38      <div class="abs"></div>
     39    </div>
     40  </div>
     41 </div>