tor-browser

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

vlr-in-multicol-ref.html (374B)


      1 <!DOCTYPE html>
      2 <style>
      3  body { writing-mode: vertical-lr; }
      4  .container {
      5    background: green;
      6    inline-size: 80px;
      7    block-size: 600px;
      8  }
      9  .multicol {
     10    column-count: 2;
     11    column-fill: auto;
     12    column-gap: 0;
     13    block-size: 100px;
     14    inline-size: 160px;
     15  }
     16 </style>
     17 
     18 There should be no red.
     19 <div class="multicol">
     20  <div class="container"></div>
     21 </div>