Flexbox & GridFlex Wrap

Flex Wrap

Controls how flex items are wrapped.

Widely available

This feature is well established and works across many devices and browser versions.

Chrome
Edge
Firefox
Safari
ClassStyle
fw-nwflex-wrap: nowrap;
fw-wflex-wrap: wrap;
fw-wrflex-wrap: wrap-reverse;

No Wrap

Initial value

The items will be displayed in a single line, and they will not wrap to the next line.

A
B
C
<div class="p-r tc-white">
<div class="d-f fw-nw g-4 max-w-30">
<div class="ai-c bg-indigo d-f jc-c p-4">A</div>
<div class="ai-c bg-indigo d-f jc-c p-4">B</div>
<div class="ai-c bg-indigo d-f jc-c p-4">C</div>
</div>
</div>

Wrap

The items will wrap onto multiple lines if there is not enough space in the container.

A
B
C
<div class="p-r tc-white">
<div class="d-f fw-w g-4 max-w-30">
<div class="ai-c bg-indigo d-f jc-c p-4">A</div>
<div class="ai-c bg-indigo d-f jc-c p-4">B</div>
<div class="ai-c bg-indigo d-f jc-c p-4">C</div>
</div>
</div>

Wrap Reverse

The items will wrap onto multiple lines, but the order of the lines will be reversed.

A
B
C
<div class="p-r tc-white">
<div class="d-f fw-wr g-4 max-w-30">
<div class="ai-c bg-indigo d-f jc-c p-4">A</div>
<div class="ai-c bg-indigo d-f jc-c p-4">B</div>
<div class="ai-c bg-indigo d-f jc-c p-4">C</div>
</div>
</div>

Using utility variants

Learn how to override existing utilities based on the user's screen size or other factors, such as hover states.

Targeting different viewports

You can combine responsive breakpoints like sm:fw-*, md:fw-*, lg:fw-*, and xxl:fw-* to allow targeting specific utilities in different viewports.

Targeting hover states

Alternatively, you can apply :hover by using h:fw-* utility to override elements and change their values when hovering over them.