multicol-span-all-restyle-002-ref.html (701B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Multi-column Layout Test Reference: Restyle column-span's parent that is an inline</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 html { 10 overflow: hidden; 11 } 12 #column { 13 column-count: 1; 14 } 15 #span { 16 position: relative; 17 left: 200px; 18 } 19 h3 { 20 column-span: all; 21 } 22 </style> 23 24 <body> 25 <article id="column"> 26 <span id="span"> 27 All text should be offset 200px, except the spanner 28 <h3>Spanner</h3> 29 <div>Some more text</div> 30 </span> 31 </article> 32 </body> 33 </html>