tor-browser

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

abspos-after-spanner-static-pos.html (814B)


      1 <!DOCTYPE html>
      2 <title>Abspos element after a column spanner</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-multicol/">
      4 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      5 <style>
      6  .multicol {
      7    columns: 2;
      8    column-gap: 0px;
      9    width: 400px;
     10    margin-top: -60px;
     11    margin-left: -200px;
     12  }
     13  .abs {
     14    position: absolute;
     15    width: 100px;
     16    height: 100px;
     17    background-color: green;
     18  }
     19 </style>
     20 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     21 <div class="multicol">
     22  <div style="height: 70px;"></div>
     23  <div style="column-span: all; height: 10px;"></div>
     24  <div style="height: 35px;"></div>
     25  <div style="height: 15px;"></div>
     26  <div class="abs"></div>
     27  <div style="height: 20px; width: 100px; background: red;"></div>
     28 </div>