Grid Auto Rows

Tailwind CSS version

v1.9.0+

Utilities for controlling the size of implicitly-created grid rows.

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.

Responsive and pseudo-class 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. // ...
5. -     gridAutoRows: ['responsive'],
6. +     gridAutoRows: ['responsive', 'hover', 'focus'],
7. }
8. }

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. }


← Grid Auto Columns   Gap →