src/docs/flex-wrap.mdx
import { Stripes } from "@/components/stripes.tsx"; import { ApiTable } from "@/components/api-table.tsx"; import { Example } from "@/components/example.tsx"; import { Figure } from "@/components/figure.tsx"; import { ResponsiveDesign } from "@/components/content.tsx";
export const title = "flex-wrap"; export const description = "Utilities for controlling how flex items wrap.";
<ApiTable rows={[ ["flex-nowrap", "flex-wrap: nowrap;"], ["flex-wrap", "flex-wrap: wrap;"], ["flex-wrap-reverse", "flex-wrap: wrap-reverse;"], ]} />
Use flex-nowrap to prevent flex items from wrapping, causing inflexible items to overflow the container if necessary:
<!-- [!code classes:flex-nowrap] -->
<div class="flex flex-nowrap">
<div>01</div>
<div>02</div>
<div>03</div>
</div>
Use flex-wrap to allow flex items to wrap:
<!-- [!code classes:flex-wrap] -->
<div class="flex flex-wrap">
<div>01</div>
<div>02</div>
<div>03</div>
</div>
Use flex-wrap-reverse to wrap flex items in the reverse direction:
<!-- [!code classes:flex-wrap-reverse] -->
<div class="flex flex-wrap-reverse">
<div>01</div>
<div>02</div>
<div>03</div>
</div>