tor-browser

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

contain-size-multicol-004-ref.html (722B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset="utf-8">
      5  <title>CSS Reftest Reference</title>
      6  <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu">
      7  <style>
      8    .cols {
      9      column-count: 3;
     10      column-rule: 1px dotted blue;
     11      column-fill: auto;
     12      border: 2px solid blue;
     13      height: 50px;
     14      width: 300px;
     15    }
     16    .innerObject {
     17      height: 200px;
     18      width: 100px;
     19      background: orange;
     20    }
     21  </style>
     22 </head>
     23  <body>
     24    <div class="cols">
     25      <canvas class="innerObject">
     26        <!-- Note: We use a canvas object here as a generic reference for
     27             something monolithic/non-fragmentable. -->
     28      </canvas>
     29    </div>
     30  </body>
     31 </html>