block-max-height-004-ref.html (789B)
1 <!DOCTYPE html> 2 <html> 3 <title>CSS Reference: max-height block fragmentation</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 <style> 7 .multicol { 8 height: 30px; 9 width: 100px; 10 column-width: 30px; 11 column-fill: auto; 12 border: 2px solid orange; 13 } 14 .block { 15 display: block; 16 background: teal; 17 border: 5px solid black; 18 border-top-width: 0; 19 height: 40px; 20 } 21 .child { 22 display: block; 23 width: 50%; 24 height: 80px; 25 } 26 img.child { background: salmon; } 27 div.child { background: purple; } 28 </style> 29 30 <div class="multicol"> 31 <main class="block"> 32 <img src="" class="child"><div class="child"></div> 33 </main> 34 </div> 35 </html>