multicol-zero-height-003-ref.html (652B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Multi-column Reference: Test a block element with box-decoration-break:clone in a zero height multi-column container</title> 4 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> 5 <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> 6 7 <style> 8 .multicol { 9 column-width: 100px; 10 inline-size: 300px; 11 block-size: 30px; 12 } 13 14 .child { 15 color: green; 16 inline-size: 100px; 17 block-size: 1px; 18 border: 5px solid green; 19 } 20 </style> 21 22 <p>There shouldn't be a green strip in the third column.</p> 23 <div class="multicol"> 24 <div class="child"></div><div class="child"></div> 25 </div>