tor-browser

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

multicol-basic-005.xht (878B)


      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: columns as 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/#columns"/>
      8 <link rel="help" href="https://www.w3.org/TR/css3-multicol/#cc"/>
      9 <style type="text/css">
     10 div {
     11   margin: 1em auto;
     12   background: yellow;
     13   border: thin solid black;
     14   width: 600px;
     15   columns: 3;
     16   column-gap: 0;
     17   column-rule: none;
     18 }
     19 </style>
     20 </head>
     21 <body>
     22 <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>
     23 </body>
     24 </html>