multicol-span-all-006-ref.html (672B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Multi-column Layout Test Reference: 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 8 <style> 9 details { 10 column-count: 1; 11 column-rule: 6px solid; 12 width: 400px; 13 outline: 1px solid black; 14 } 15 h3 { 16 /* column-count: 1 makes this behave like a real spanner. */ 17 outline: 1px solid blue; 18 } 19 </style> 20 21 <body> 22 <details open> 23 <summary>Columns</summary> 24 <h3>spanner</h3> 25 <div>block</div> 26 </details> 27 </body> 28 </html>