Flex Wrap
Controls how flex items are wrapped.
Class | Properties |
---|---|
fw-nw | flex-wrap: nowrap; |
fw-w | flex-wrap: wrap; |
fw-wr | flex-wrap: wrap-reverse; |
No Wrap
This example sets the flex wrap to nowrap. The items will be displayed in a single line, and they will not wrap to the next line.
<div class="p-r tc-white"> <div class="d-f fw-nw g-4 max-w-30 rad-1 stripes"> <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
This example sets the flex wrap to wrap. The items will wrap onto multiple lines if there is not enough space in the container.
<div class="p-r tc-white"> <div class="d-f fw-w g-4 max-w-30 rad-1 stripes"> <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
This example sets the flex wrap to wrap-reverse. The items will wrap onto multiple lines, but the order of the lines will be reversed.
<div class="p-r tc-white"> <div class="d-f fw-wr g-4 max-w-30 rad-1 stripes"> <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>
Utilizing utilities conditionally
Override existing utilities based on the user's screen size or other factors, such as hover states. Learn more about modifiers in our documentation.
Responsive breakpoints
You can combine responsive breakpoints like sm:fw-*
,md:fw-*
, lg:fw-*
, and xxl:fw-*
allows targeting specific utilities in
different viewports.
<div class="fw-wr md:fw-w ..."></div>
Utilizing utilities conditionally
Override existing utilities based on the user's screen size or other factors, such as hover states. Learn more about modifiers in our documentation.
Hover states
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>