Grid Auto Rows
Utilities for controlling the size of implicitly-created grid rows.
Default class reference
| Class | Properties |
|---|---|
| auto-rows-auto | grid-auto-rows: auto; |
| auto-rows-min | grid-auto-rows: min-content; |
| auto-rows-max | grid-auto-rows: max-content; |
| auto-rows-fr | grid-auto-rows: minmax(0, 1fr); |
Usage
Use the auto-rows-{size} utilities to control the size implicitly-created grid rows.
1. <div class="grid grid-flow-row auto-rows-max">
2. <div>1</div>
3. <div>2</div>
4. <div>3</div>
5. </div>
Responsive
To control the grid-auto-rows property at a specific breakpoint, add a {screen}: prefix to any existing grid-auto-rows utility. For example, use md:auto-rows-min to apply the auto-rows-min utility at only medium screen sizes and above.
1. <div class="grid grid-flow-row auto-rows-max md:auto-rows-min">
2. <div>1</div>
3. <div>2</div>
4. <div>3</div>
5. </div>
For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.
Customizing
By default, Tailwind includes four general purpose grid-auto-rows utilities. You can customize these in the theme.gridAutoRows section of your tailwind.config.js file.
1. // tailwind.config.js
2. module.exports = {
3. theme: {
4. extend: {
5. gridAutoRows: {
6. '2fr': 'minmax(0, 2fr)',
7. }
8. }
9. }
10. }
Learn more about customizing the default theme in the theme customization documentation.
Variants
By default, only responsive variants are generated for grid-auto-rows utilities.
You can control which variants are generated for the grid-auto-rows utilities by modifying the gridAutoRows property in the variants section of your tailwind.config.js file.
For example, this config will also generate hover and focus variants:
1. // tailwind.config.js
2. module.exports = {
3. variants: {
4. extend: {
5. // ...
6. + gridAutoRows: ['hover', 'focus'],
7. }
8. }
9. }
Disabling
If you don’t plan to use the grid-auto-rows utilities in your project, you can disable them entirely by setting the gridAutoRows property to false in the corePlugins section of your config file:
1. // tailwind.config.js
2. module.exports = {
3. corePlugins: {
4. // ...
5. + gridAutoRows: false,
6. }
7. }
