Grid Auto Columns
Utilities for controlling the size of implicitly-created grid columns.
Use the utilities to control the size of implicitly-created grid columns.
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:auto-cols-min
to only apply the auto-cols-min
utility on hover.
You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use to apply the auto-cols-min
utility at only medium screen sizes and above.
To learn more, check out the documentation on Responsive Design, and other media query modifiers.
By default, Tailwind includes four general purpose grid-auto-columns
utilities. You can customize these values by editing or theme.extend.gridAutoColumns
in your tailwind.config.js
file.
Learn more about customizing the default theme in the documentation.
If you need to use a one-off 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.
Learn more about arbitrary value support in the documentation.