multicol-span-all-fieldset-001.html (949B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Multi-column Layout Test: Test a multi-column container on fieldset works with a column-span:all child</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-fieldset-001-ref.html"> 9 <meta name="assert" content="This test checks the page is rendered correctly for a simple fieldset multi-column container with a column-span:all child."> 10 11 <style> 12 fieldset { 13 column-count: 3; 14 column-rule: 6px solid; 15 width: 400px; 16 } 17 h3 { 18 column-span: all; 19 outline: 1px solid blue; 20 } 21 </style> 22 23 <fieldset> 24 <legend>Legend</legend> 25 <div>block1</div><div>block2</div> 26 <h3>spanner</h3> 27 <div>block3</div><div>block4</div> 28 </fieldset> 29 </html>