tor-browser

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

multicol-span-all-dynamic-add-004-ref.html (801B)


      1 <!DOCTYPE html>
      2 <html>
      3  <meta charset="utf-8">
      4  <title>CSS Multi-column Layout Test Reference: Add the spanner to the inner 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  body {
     10    width: 400px;
     11  }
     12  article {
     13    column-count: 2;
     14    column-rule: 6px solid;
     15    outline: 1px solid black;
     16  }
     17  h3 {
     18    column-span: all;
     19    outline: 1px solid blue;
     20  }
     21  </style>
     22 
     23  <body>
     24    <article>
     25      <article>
     26        <div>inner block1</div>
     27        <h3>spanner</h3>
     28        <div>inner block2</div>
     29      </article>
     30      <article>
     31        <div>inner block3</div>
     32        <h3>static spanner</h3>
     33        <div>inner block4</div>
     34      </article>
     35    </article>
     36  </body>
     37 </html>