Grid Template Rows

    v1.2.0+

    Utilities for specifying the rows in a grid layout.

    Use the utilities to create grids with n equally sized rows.

    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.

    Grid Template Rows - 图2

    all

    sm

    md

    Grid Template Rows - 图5

    lg

    xl

    1

    2

    3

    4

    5

    7

    8

    9

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

    Learn more about customizing the default theme in the .

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

    For example, this config will also generate hover and focus variants:

    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: