Order
import { ApiTable } from "@/components/api-table.tsx"; import { Example } from "@/components/example.tsx"; import { Figure } from "@/components/figure.tsx"; import { ResponsiveDesign, UsingACustomValue } from "@/components/content.tsx";
export const title = "order"; export const description = "Utilities for controlling the order of flex and grid items.";
Examples¶
Explicitly setting a sort order¶
Use order-<number> utilities like order-1 and order-3 to render flex and grid items in a different order than they appear in the document:
<!-- [!code classes:order-1,order-2,order-3] -->
<div class="flex justify-between ...">
<div class="order-3 ...">01</div>
<div class="order-1 ...">02</div>
<div class="order-2 ...">03</div>
</div>
Ordering items first or last¶
Use the order-first and order-last utilities to render flex and grid items first or last:
<!-- [!code classes:order-first,order-last] -->
<div class="flex justify-between ...">
<div class="order-last ...">01</div>
<div class="...">02</div>
<div class="order-first ...">03</div>
</div>
Using negative values¶
To use a negative order value, prefix the class name with a dash to convert it to a negative value:
<!-- [!code classes:-order-1] -->
<div class="-order-1">
<!-- ... -->
</div>