tor-browser

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

inline-with-float-002.html (925B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1113185">
      4 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      5 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      6 <style>
      7  .ib {
      8    display: inline-block;
      9    width: 100%;
     10    vertical-align: top;
     11    background: green;
     12  }
     13 </style>
     14 <div style="columns:5; gap:0; column-fill:auto; width:100px; height:100px; orphans:1; widows:1; background:red;">
     15  <div style="height:170px; background:green;"></div>
     16  <span style="position:relative;">
     17    <div class="ib" style="height:30px;"></div>
     18    <div class="ib" style="height:20px;"></div>
     19    <div style="position:relative; float:left; width:100%; height:200px; background:green;"></div>
     20    <div class="ib" style="height:80px;"></div>
     21  </span>
     22 </div>