tor-browser

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

widows-block-in-inline-001-ref.html (381B)


      1 <!DOCTYPE html>
      2 <style>
      3 .columns {
      4  columns: 3;
      5  column-fill: auto;
      6  line-height: 1;
      7  height: 5em;
      8  orphans: 3;
      9  widows: 3;
     10 }
     11 </style>
     12 <body>
     13  <div class="columns">
     14    <div>
     15      p1l1<br>
     16      p1l2<br>
     17      p1l3<br>
     18    </div>
     19    <div>
     20      p2l1<br>
     21      p2l2<br>
     22      p2l3<br>
     23      p2l4<br>
     24      p2l5<br>
     25      p2l6<br>
     26      p2l7<br>
     27    </div>
     28  </div>
     29 </body>