flex-container-fragmentation-006.html (604B)
1 <!DOCTYPE html> 2 <title> 3 Flex container fragmentation with tall margin. 4 </title> 5 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination"> 6 <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html"> 7 <style> 8 .multicol { 9 column-count: 4; 10 column-gap: 0px; 11 height: 100px; 12 margin-left: -25px; 13 width: 100px; 14 } 15 .flex { 16 background: green; 17 display: flex; 18 height: 400px; 19 margin-top: 200px; 20 width: 25px; 21 } 22 </style> 23 <p>Test passes if there is a filled green square.</p> 24 <div class="multicol"> 25 <div class="flex"></div> 26 </div>