Flex Wrap
Controls how flex items are wrapped.
| Class | Style |
|---|---|
| fw-nw | flex-wrap: nowrap;
|
| fw-w | flex-wrap: wrap;
|
| fw-wr | flex-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" id="area"> <div class="ai-c bg-indigo d-f jc-c p-4 rad-1">A</div> <div class="ai-c bg-indigo d-f jc-c p-4 rad-1">B</div> <div class="ai-c bg-indigo d-f jc-c p-4 rad-1">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" id="area"> <div class="ai-c bg-indigo d-f jc-c p-4 rad-1">A</div> <div class="ai-c bg-indigo d-f jc-c p-4 rad-1">B</div> <div class="ai-c bg-indigo d-f jc-c p-4 rad-1">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" id="area"> <div class="ai-c bg-indigo d-f jc-c p-4 rad-1">A</div> <div class="ai-c bg-indigo d-f jc-c p-4 rad-1">B</div> <div class="ai-c bg-indigo d-f jc-c p-4 rad-1">C</div> </div></div>Conditional styles
Learn how to override existing utilities based on the user’s screen size or other factors, such as hover states.
Breakpoint variant
You can combine responsive breakpoints like sm:fw-*,md:fw-*, lg:fw-*, and xxl:fw-* to allow targeting specific utilities in different viewports.
<div class="fw-wr md:fw-w ..."></div>Hover variant
Alternatively, you can apply :hover by using h:fw-* utility to override elements and change their values when hovering over
them.
<div class="fw-wr h:fw-w ..."></div>