multicol-span-all-restyle-003-ref.html (676B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Multi-column Layout Test Reference: Restyle column-span's 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 8 <style> 9 #column { 10 column-count: 1; 11 width: 400px; 12 outline: 1px solid black; 13 background-color: yellow; 14 } 15 h3 { 16 column-span: all; 17 } 18 #div { 19 background-color: yellow; 20 } 21 </style> 22 23 <body> 24 <article id="column"> 25 <div> 26 <div>block1</div> 27 <h3>spanner</h3> 28 <div>block2</div> 29 </div> 30 </article> 31 </body> 32 </html>