tor-browser

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

multicol-basic-006.xht (801B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3 <head>
      4 <title>CSS Multi-column Layout Test: column-count (basic)</title>
      5 <link rel="author" title="Hakon Wium Lie" href="mailto:howcome@opera.com"/>
      6 <link rel="match" href="reference/multicol-basic-005-ref.xht"/>
      7 <link rel="help" href="https://www.w3.org/TR/css3-multicol/#cc"/>
      8 <style type="text/css">
      9 div {
     10   margin: 1em auto;
     11   background: yellow;
     12   border: thin solid black;
     13   width: 600px;
     14   column-count: 3;
     15   column-gap: 0;
     16   column-rule: none;
     17 }
     18 </style>
     19 </head>
     20 <body>
     21 <div>This multicol element should have a width of 600 pixels and the content should be flowed into three columns with no gap or rule between them.</div>
     22 </body>
     23 </html>