tor-browser

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

multicol-span-all-dynamic-add-008-ref.html (695B)


      1 <!DOCTYPE html>
      2 <html>
      3  <meta charset="utf-8">
      4  <title>CSS Multi-column Layout Test Reference: Add a nested multi-column spanner to the outer column</title>
      5  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      6  <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
      7 
      8  <style>
      9  #column {
     10    column-count: 3;
     11    column-rule: 6px solid;
     12    width: 400px;
     13    outline: 1px solid black;
     14  }
     15  h3 {
     16    column-count: 2;
     17    column-span: all;
     18    outline: 1px solid blue;
     19  }
     20  </style>
     21 
     22  <body>
     23    <article id="column">
     24      <div>block1</div>
     25      <h3>multi-column spanner</h3>
     26      <h3>spanner</h3>
     27      <div>block2</div>
     28    </article>
     29  </body>
     30 </html>