tor-browser

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

out-of-flow-in-multicolumn-074.html (835B)


      1 <!DOCTYPE html>
      2 <title>
      3  Out-of-flow positioned with bottom:0 with spanner sibling.
      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: 4;
     10    column-gap: 0px;
     11    width: 100px;
     12    margin-top: -105px;
     13  }
     14  .abs {
     15    position: absolute;
     16    background-color: green;
     17    height: 400px;
     18    width: 25px;
     19    bottom: 0;
     20  }
     21 </style>
     22 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     23 <div class="multicol">
     24  <div style="position: relative;">
     25    <div style="height: 400px;"></div>
     26    <div class="abs"></div>
     27    <div style="column-span: all; height:5px;"></div>
     28    <div style="height: 400px; width: 25px; background-color: red;"></div>
     29  </div>
     30 </div>