multi-line-row-flex-fragmentation-068-ref.html (726B)
1 <!DOCTYPE html> 2 <title> 3 Multi-line row flex fragmentation: row gaps should be truncated by 4 fragmentainer breaks. Test with content overflow. 5 </title> 6 <style> 7 .multicol { 8 columns: 2; 9 column-fill: auto; 10 width: 300px; 11 height: 100px; 12 margin: 20px; 13 background: yellow; 14 } 15 .flex { 16 display: flex; 17 flex-wrap: wrap; 18 background: gray; 19 } 20 .flex > div { 21 contain: size; 22 width: 100%; 23 height: 50px; 24 background: cyan; 25 } 26 </style> 27 <p>Flex row gaps <strong>should</strong> be truncated when a row breaks.</p> 28 <div class="multicol"> 29 <div style="height:25px;"></div> 30 <div class="flex" style="height:25px;"> 31 <div style="height:150px;"></div> 32 <div></div> 33 </div> 34 </div>