multicol-span-all-fieldset-003-ref.html (930B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Multi-column Layout Test: Test a overflow:hidden and position:absolute multi-column container on fieldset works with a column-span:all child and position:fixed boxes</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 fieldset { 10 width: 400px; 11 overflow: hidden; 12 position: absolute; 13 } 14 .inner { 15 column-count: 3; 16 column-rule: 6px solid; 17 } 18 h3 { 19 column-span: all; 20 outline: 1px solid blue; 21 } 22 a { 23 position: fixed; 24 width: 1em; 25 height: 1em; 26 background-color: blue; 27 } 28 </style> 29 30 <fieldset> 31 <legend>Legend<a></a></legend> 32 <div class="inner"> 33 <div>block1</div><div>block2</div><a></a> 34 <h3>spanner<a></a></h3> 35 <div>block3</div><div>block4</div><a></a> 36 </div> 37 </fieldset> 38 </html>