1. 弹性盒子与网格
  2. 网格自动行

弹性盒子与网格

grid-auto-rows

用于控制隐式创建的网格行大小的工具类。

ClassStyles
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);
auto-rows-(<custom-property>)
grid-auto-rows: var(<custom-property>);
auto-rows-[<value>]
grid-auto-rows: <value>;

示例

基本示例

使用诸如 auto-rows-minauto-rows-max 的工具类来控制隐式创建的网格行的大小:

<div class="grid grid-flow-row auto-rows-max">
<div>01</div>
<div>02</div>
<div>03</div>
</div>

使用自定义值

Use the auto-rows-[<value>] syntax to set the 隐式创建的网格行的大小 based on a completely custom value:

<div class="auto-rows-[minmax(0,2fr)] ...">
<!-- ... -->
</div>

For CSS variables, you can also use the auto-rows-(<custom-property>) syntax:

<div class="auto-rows-(--my-auto-rows) ...">
<!-- ... -->
</div>

This is just a shorthand for auto-rows-[var(<custom-property>)] that adds the var() function for you automatically.

响应式设计

Prefix a grid-auto-rows utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

<div class="grid grid-flow-row auto-rows-max md:auto-rows-min ...">
<!-- ... -->
</div>

Learn more about using variants in the variants documentation.