multi-line-row-flex-fragmentation-049.html (735B)
1 <!DOCTYPE html> 2 <title> 3 Multi-line row flex fragmentation: wrap-reverse and row-reverse. 4 </title> 5 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination"> 6 <link rel="match" href="multi-line-row-flex-fragmentation-049-ref.html"> 7 <div style="width: 100px; height: 100px; columns: 2; column-fill: auto; column-gap: 0;"> 8 <div style="display: flex; flex-flow: row-reverse; flex-wrap: wrap-reverse; height: 200px;"> 9 <div style="height: 100px; width: 25px; background: orange;"></div> 10 <div style="height: 100px; width: 25px; background: blue;"></div> 11 <div style="height: 100px; width: 25px; background: purple;"></div> 12 <div style="height: 100px; width: 25px; background: yellow;"></div> 13 </div> 14 </div>