multicol-span-all-007.html (936B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Multi-column Layout Test: Test column-span:all when the body tag is the multi-column container</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 <link rel="help" href="https://drafts.csswg.org/css-multicol-1/#column-span"> 8 <link rel="match" href="multicol-span-all-007-ref.html"> 9 <meta name="assert" content="This test checks a column-span:all element is working if the body tag is the multi-column container."> 10 11 <style> 12 body { 13 column-count: 3; 14 column-rule: 6px solid; 15 width: 400px; 16 outline: 1px solid black; 17 } 18 h3 { 19 column-span: all; 20 outline: 1px solid blue; 21 } 22 </style> 23 24 <body> 25 <div>block1</div> 26 <div> 27 <h3>spanner</h3> <!-- Put spanner in a subtree deliberately --> 28 </div> 29 <div>block2</div> 30 </body> 31 </html>