Skip to content

Flexbox & Grid

Flex Wrap

Utilities for controlling how flex items wrap.

Quick reference

ClassDescription
flex-nowrapflex-wrap: nowrap
flex-wrapflex-wrap: wrap
flex-wrap-reverseflex-wrap: wrap-reverse

Basic usage

Don't wrap

Use flex-nowrap to prevent flex items from wrapping, causing inflexible items to overflow the container if necessary.

01
02
03
html
<div class="flex flex-nowrap ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

Wrap normally

Use flex-wrap to allow flex items to wrap.

01
02
03
html
<div class="flex flex-wrap ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

Wrap reversed

Use flex-wrap-reverse to wrap flex items in the reverse direction.

01
02
03
html
<div class="flex flex-wrap-reverse ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

Applying conditionally

Breakpoints and media queries

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:flex-wrap-reverse to apply the flex-wrap-reverse utility at only medium screen sizes and above.

html
<div class="flex flex-wrap md:flex-wrap-reverse">
  <!-- ... -->
</div>

Released under the Apache 2.0 License.