tor-browser

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

zero-column-height.html (921B)


      1 <!DOCTYPE html>
      2 <title>zero column-height</title>
      3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      4 <link rel="help" href="https://drafts.csswg.org/css-multicol-2/#ch">
      5 <link rel="help" href="https://drafts.csswg.org/css-multicol-2/#cwr">
      6 
      7 <!-- zero row-gap -->
      8 <div style="columns:2; column-fill:auto; column-height:0px; row-gap:0px; column-wrap:wrap;">
      9  <div style="height:10px;"></div>
     10  <div style="height:10px;"></div>
     11 </div>
     12 
     13 <!-- non-zero row-gap -->
     14 <div style="columns:2; column-fill:auto; column-height:0px; row-gap:100px; column-wrap:wrap;">
     15  <div style="height:10px;"></div>
     16  <div style="height:10px;"></div>
     17 </div>
     18 
     19 <!-- zero row-gap with spanner -->
     20 <div style="columns:2; column-fill:auto; column-height:0px; row-gap:0px; column-wrap:wrap;">
     21  <div style="height:10px;"></div>
     22  <div style="column-span:all; height:10px;"></div>
     23  <div style="height:10px;"></div>
     24 </div>