tor-browser

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

out-of-flow-in-multicolumn-018.html (981B)


      1 <!DOCTYPE html>
      2 <title>
      3  Nested fragmentation for out-of-flow positioned elements.
      4 </title>
      5 <link rel="help" href="https://www.w3.org/TR/css-position-3/#abspos-breaking">
      6 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      7 <style>
      8  .multicol {
      9    column-count: 2;
     10    column-fill: auto;
     11    column-gap: 0px;
     12  }
     13  #outer {
     14    height: 100px;
     15    width: 100px;
     16  }
     17  #inner {
     18    width: 50px;
     19    background-color: red;
     20  }
     21  .rel {
     22    position: relative;
     23    height: 360px;
     24  }
     25  .abs {
     26    position: absolute;
     27    bottom: 0px;
     28    top: 0px;
     29    width: 25px;
     30    background-color: green;
     31  }
     32 </style>
     33 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     34 <div class="multicol" id="outer">
     35  <div class="multicol" id="inner">
     36    <div class="rel">
     37      <div style="height: 180px;"></div>
     38      <div style="column-span: all; height: 20px; background-color: green;"></div>
     39      <div class="abs"></div>
     40    </div>
     41  </div>
     42 </div>