grid-auto-rows - CSS(层叠样式表) 编辑
CSS属性 grid-auto-rows
用于指定隐式创建的行轨道大小。
此交互式示例的源代码托管于GitHub中。如果您想为交互示例贡献代码,请 clone https://github.com/mdn/interactive-examples 并且给我们发送pull request.
如果定位到某行中的网格元素没有使用 grid-template-rows
来指定大小,则会隐式创建grid 轨道来保存它。这可能在显示定位到超出范围的行,或者由自动放置算法创建额外的行时发生。
语法
/* Keyword values */
grid-auto-rows: min-content;
grid-auto-rows: max-content;
grid-auto-rows: auto;
/* <length> values */
grid-auto-rows: 100px;
grid-auto-rows: 20cm;
grid-auto-rows: 50vmax;
/* <percentage> values */
grid-auto-rows: 10%;
grid-auto-rows: 33.3%;
/* <flex> values */
grid-auto-rows: 0.5fr;
grid-auto-rows: 3fr;
/* minmax() values */
grid-auto-rows: minmax(100px, auto);
grid-auto-rows: minmax(max-content, 2fr);
grid-auto-rows: minmax(20%, 80vmax);
/* multiple track-size values */
grid-auto-rows: min-content max-content auto;
grid-auto-rows: 100px 150px 390px;
grid-auto-rows: 10% 33.3%;
grid-auto-rows: 0.5fr 3fr 1fr;
grid-auto-rows: minmax(100px, auto) minmax(max-content, 2fr) minmax(20%, 80vmax);
grid-auto-rows: 100px minmax(100px, auto) 10% 0.5fr fit-content(400px);
/* Global values */
grid-auto-rows: inherit;
grid-auto-rows: initial;
grid-auto-rows: unset;
取值
<length>
- 一个非负的长度。
<percentage>
- 相对于网格窗口块尺寸的非负
<percentage>
值。如果网格容器的块尺寸是不确定的, 则百分比值将被视为auto
。 <flex>
- 非负的、以
fr
为单位的维度指定轨道的弹性因子。每个<flex>
-尺寸的轨道都按其弹性因子的比例挤占剩余空间的一部分。当使用在
minmax()
符号外时,意味着最小值为auto
(例:minmax(auto, <flex>)
). max-content
- 关键词,指明由网格元素中占用空间最大的那一个来决定轨道的尺寸。
min-content
- 关键词,指明由网格元素中占用空间最小的那一个来决定轨道的尺寸。
minmax(min, max)
- 函数符号,定义一个不小于
min
且不大于max
的尺寸范围。如果max
比min
小,则max
会被忽略,函数会被录作min
处理。作为最大值,<flex>
值设置了轨道的弹性因子。作为最小值,会被当作0处理(或者最小内容——当网格容器指定了尺寸为最小内容)。 auto
- 关键字,当用来指定最大值时与最大内容一致,当用来指定最小值时,它表示轨道中所有网格元素最小尺寸中的最大值(由
min-width
/min-height
指定)。 注意:
auto
轨道尺寸(且仅有auto
轨道尺寸)可配合align-content
和justify-content
属性使用。
形式语法
<track-size>+where
<track-size> = <track-breadth> | minmax( <inflexible-breadth> , <track-breadth> ) | fit-content( [ <length> | <percentage> ] )
where
<track-breadth> = <length-percentage> | <flex> | min-content | max-content | auto
<inflexible-breadth> = <length> | <percentage> | min-content | max-content | autowhere
<length-percentage> = <length> | <percentage>
示例
HTML内容
<div id="grid">
<div id="item1"></div>
<div id="item2"></div>
<div id="item3"></div>
</div>
CSS内容
#grid {
width: 200px;
display: grid;
grid-template-areas: "a a";
grid-gap: 10px;
grid-auto-rows: 100px;
}
#grid > div {
background-color: lime;
}
规范
标准 | 状态 | 说明 |
---|---|---|
CSS Grid Layout grid-auto-rows | Candidate Recommendation | 初始定义。 |
初始值 | auto |
---|---|
适用元素 | grid containers |
是否是继承属性 | 否 |
Percentages | refer to corresponding dimension of the content area |
计算值 | the percentage as specified or the absolute length |
Animation type | discrete |
浏览器兼容性
BCD tables only load in the browser
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.相关链接
- 相关的CSS属性:
grid-auto-columns
,grid-auto-flow
,grid
- 网格布局指南: 网格布局中的自动定位 - 隐式网格中的行尺寸
- 视频教程:引入网格自动放置和排序
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论