tor-browser

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

baseline-008.html (734B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://drafts.csswg.org/css-multicol-1">
      4 <link rel="help" href="https://drafts.csswg.org/css-align/#baseline-export">
      5 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/7639">
      6 <link rel="match" href="baseline-008-ref.html">
      7 <style>
      8  .part {
      9      display: inline-block;
     10      width: 50px;
     11      height: 100px;
     12      background: green;
     13      color: transparent;
     14  }
     15  .multicol {
     16      columns: 2;
     17      column-fill: auto;
     18  }
     19 </style>
     20 <p>There should be a green square below.</p>
     21 <div class="part">
     22  <div>line1<br>line2</div>
     23 </div><div class="part multicol">
     24  <div>line1<br>line2</div>
     25 </div>