multicol-overflow-clip.html (785B)
1 <!DOCTYPE html> 2 <title>CSS Multi-column Layout Test: multicol with overflow-clipped content</title> 3 <link rel="help" href="https://www.w3.org/TR/css-multicol-1/"> 4 <link rel="match" href="multicol-overflow-clip-ref.html"> 5 <meta name="assert" content="Overflow clip should work under multicol."> 6 <style> 7 .multicol { 8 column-count: 3; 9 } 10 .parent { 11 background: green; 12 height: 50px; 13 overflow: hidden; 14 } 15 .child2 { 16 margin-top: 50px; 17 background: darkred; 18 color: red; 19 height: 100px; 20 } 21 </style> 22 <div class="multicol"> 23 <div class="parent"> 24 <div class="child2">This should be hidden.</div> 25 </div> 26 <div class="parent"> 27 <div class="child2">This should be hidden.</div> 28 </div> 29 <div class="parent"> 30 <div class="child2">This should be hidden.</div> 31 </div> 32 </div>