multicol-span-all-006.html (869B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Multi-column Layout Test: Test column-span:all under HTML details tag</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-006-ref.html"> 9 <meta name="assert" content="This test checks a column-span:all element is working under HTML details tag."> 10 11 <style> 12 details { 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 <details open> 26 <summary>Columns</summary> 27 <h3>spanner</h3> 28 <div>block</div> 29 </details> 30 </body> 31 </html>