Grid Template Rows
Tailwind CSS version
v1.2.0+
Utilities for specifying the rows in a grid layout.
Class reference
| Class | Properties |
|---|---|
| .grid-rows-1 | grid-template-rows: repeat(1, minmax(0, 1fr)); |
| .grid-rows-2 | grid-template-rows: repeat(2, minmax(0, 1fr)); |
| .grid-rows-3 | grid-template-rows: repeat(3, minmax(0, 1fr)); |
| .grid-rows-4 | grid-template-rows: repeat(4, minmax(0, 1fr)); |
| .grid-rows-5 | grid-template-rows: repeat(5, minmax(0, 1fr)); |
| .grid-rows-6 | grid-template-rows: repeat(6, minmax(0, 1fr)); |
| .grid-rows-none | grid-template-rows: none; |
Usage
Use the grid-rows-{n} utilities to create grids with n equally sized rows.

1. <div class="h-64 grid grid-rows-3 grid-flow-col gap-4">
2. <div>1</div>
3. <!-- ... -->
4. <div>9</div>
5. </div>
Responsive
To control the rows of a grid at a specific breakpoint, add a {screen}: prefix to any existing grid-template-rows utility. For example, use md:grid-rows-6 to apply the grid-rows-6 utility at only medium screen sizes and above.
For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.

all

sm

md

lg

xl
1. <div class="grid grid-flow-col grid-rows-2 sm:grid-rows-3 md:grid-rows-4 lg:grid-rows-5 xl:grid-rows-6 ...">
2. <!-- ... -->
3. </div>
1
2
3
4
5
6
7
8
9
Customizing
By default Tailwind includes grid-template-row utilities for creating basic grids with up to 6 equal width rows. You change, add, or remove these by customizing the gridTemplateRows section of your Tailwind theme config.
You have direct access to the grid-template-rows CSS property here so you can make your custom rows values as generic or as complicated and site-specific as you like.
1. // tailwind.config.js
2. module.exports = {
3. theme: {
4. extend: {
5. gridTemplateRows: {
6. // Simple 8 row grid
7. + '8': 'repeat(8, minmax(0, 1fr))',
9. // Complex site-specific row configuration
10. + 'layout': '200px minmax(900px, 1fr) 100px',
11. }
12. }
13. }
14. }
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-template-rows utilities.
You can control which variants are generated for the grid-template-rows utilities by modifying the gridTemplateRows 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. - gridTemplateRows: ['responsive'],
6. + gridTemplateRows: ['responsive', 'hover', 'focus'],
7. }
8. }
Disabling
If you don’t plan to use the grid-template-rows utilities in your project, you can disable them entirely by setting the gridTemplateRows property to false in the corePlugins section of your config file:
1. // tailwind.config.js
2. module.exports = {
3. corePlugins: {
4. // ...
5. + gridTemplateRows: false,
6. }
7. }
