Order
Utilities for controlling the order of flex and grid items.
Show all classes
Use to render flex and grid items in a different order than they appear in the DOM.
Using negative values
<div class="-order-1">
</div>
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:order-last
to only apply the order-last
utility on hover.
For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.
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:order-last
to apply the utility at only medium screen sizes and above.
<div class="order-first md:order-last">
<!-- ... -->
</div>
To learn more, check out the documentation on Responsive Design, and other media query modifiers.
tailwind.config.js
Learn more about customizing the default theme in the documentation.
Arbitrary values
If you need to use a one-off order
value that doesn’t make sense to include in your theme, use square brackets to generate a property on the fly using any arbitrary value.
<div class="order-[13]">
Learn more about arbitrary value support in the documentation.