multicol-span-all-restyle-004-ref.html (626B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Multi-column Layout Test Reference: Restyle the column-span itself</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 } 14 h3 { 15 column-span: all; 16 background-color: yellow; 17 } 18 </style> 19 20 <body> 21 <article id="column"> 22 <div> 23 <div>block1</div> 24 <h3>yellow spanner</h3> 25 <div>block2</div> 26 </div> 27 </article> 28 </body> 29 </html>