你正在瀏覽的是 Tailwind CSS v2. 的技術文件
Tailwind CSS 的 GitHub

Grid Template Rows

Utilities for specifying the rows in a grid layout.

Default class reference

Class
屬性
grid-rows-1grid-template-rows: repeat(1, minmax(0, 1fr));
grid-rows-2grid-template-rows: repeat(2, minmax(0, 1fr));
grid-rows-3grid-template-rows: repeat(3, minmax(0, 1fr));
grid-rows-4grid-template-rows: repeat(4, minmax(0, 1fr));
grid-rows-5grid-template-rows: repeat(5, minmax(0, 1fr));
grid-rows-6grid-template-rows: repeat(6, minmax(0, 1fr));
grid-rows-nonegrid-template-rows: none;

Usage

Use the grid-rows-{n} utilities to create grids with n equally sized rows.

1
2
3
4
5
6
7
8
9
<div class="h-64 grid grid-rows-3 grid-flow-col gap-4">
  <div>1</div>
  <!-- ... -->
  <div>9</div>
</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.

<div class="grid grid-rows-2 md:grid-rows-6 ...">
  <!-- ... -->
</div>

For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.

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.

  // tailwind.config.js
  module.exports = {
    theme: {
      extend: {
        gridTemplateRows: {
          // Simple 8 row grid
+         '8': 'repeat(8, minmax(0, 1fr))',

          // Complex site-specific row configuration
+         'layout': '200px minmax(900px, 1fr) 100px',
        }
      }
    }
  }

Learn more about customizing the default theme in the theme customization documentation.

Variants

默認情況下, 只有 響應式 的 grid-template-rows 變化模式 (variants) 會產生。

tailwind.config.jsvariants 區塊中變更 gridTemplateRows 屬性來決定有哪些變化模式會生成。

舉個例子來說,這個設定將會生成 響應式 和 hover 的變化模式。

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       gridTemplateRows: ['responsive', 'hover'],
      }
    }
  }

Disabling

如果你不打算在專案中使用 grid-template-rows 功能,可以在你的設定檔裡的 corePlugins 屬性中將 gridTemplateRows 設定為 false 來停用功能:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
+     gridTemplateRows: false,
    }
  }