multicol-fill-auto-block-children-003-ref.html (625B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Multi-column Layout Test Reference: 'column-fill: auto' and height constrained of a 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 article { 10 column-fill: auto; 11 column-count: 2; 12 width: 200px; 13 height: 200px; 14 } 15 div { 16 height: 400px; 17 background-color: lightgreen; 18 } 19 </style> 20 21 <p>This test passes if you see two green strips with equal height.</p> 22 <article> 23 <div></div> 24 </article> 25 </html>