Flexbox

Flex Wrap

Utilities for creates how flex items wrap.


Variant

Active Checked Child-Selection Dark Mode Disabled Expand First-Last-Selection First-Letter Focus Focus-Visible Focus-Within Fullscreen Group-Focus Group-Hover Hover Landscape Light Mode Portrait Reduce-Motion Responsive Selection-Hover Visited

API

classcss
flex-no-wrapflex-wrap: nowrap
flex-wrapflex-wrap: wrap
flex-wrap-reverseflex-wrap: wrap-reverse

Usage

1
2
3
4
5
flex-wrap: OFF
1
2
3
4
5
flex-wrap: OFF
<div class="flex flex-wrap">
<div> ... </div>
<div> ... </div>
<div> ... </div>
</div>
HTML
.dummy-parent {
@extend
.flex,
.flex-wrap;
}
SCSS