CSS grid 属性
定义和用法
The grid
属性是以下属性的简写属性:
- grid-template-rows
- grid-template-columns
- grid-template-areas
- grid-auto-rows
- grid-auto-columns
- grid-auto-flow
默认值 | none none none auto auto row |
---|---|
继承 | 否 |
可动画的 | 是,请查看各个属性。 了解关于可动画的 试试 |
版本 | CSS 网格布局模块级别 1 |
JavaScript 语法 | object.style.grid="250px / auto auto auto" 试试 |
浏览器支持
表格中的数字指定完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
grid | 57 | 16 | 52 | 10 | 44 |
CSS 语法
grid: none|grid-template-rows / grid-template-columns|grid-template-areas|grid-template-rows / [grid-auto-flow] grid-auto-columns|[grid-auto-flow] grid-auto-rows / grid-template-columns|initial|inherit;
属性值
值 | 描述 | 演示 |
---|---|---|
none | 默认值。列或行没有特定大小 | |
grid-template-rows / grid-template-columns | 指定列和行的大小 | 演示 ❯ |
grid-template-areas | 使用命名项指定网格布局 | 演示 ❯ |
grid-template-rows / grid-auto-columns | 指定行的尺寸(高度)和列的自动尺寸 | |
grid-auto-rows / grid-template-columns | 指定行的自动尺寸,并设置 grid-template-columns 属性 | |
grid-template-rows / grid-auto-flow grid-auto-columns | 指定行的尺寸(高度)、如何放置自动放置的项以及列的自动尺寸 | |
grid-auto-flow grid-auto-rows / grid-template-columns | 指定如何放置自动放置的项、行的自动尺寸以及设置 grid-template-columns 属性 | |
initial | 将此属性设置为其默认值。 阅读关于 initial | |
inherit | 从其父元素继承此属性。阅读关于 inherit |
更多示例
示例
指定两行,其中“item1”跨越前两列中的前两行(在五列网格布局中)
.item1 {
grid-area: myArea;
}
.grid-container {
display: grid;
grid
'myArea myArea . . .'
'myArea myArea . . .';
}
自己试试 »
示例
命名所有项,并创建一个可立即使用的网页模板
.item1 { grid-area: header; }
.item2 { grid-area: menu; }
.item3 { grid-area: main; }
.item4 { grid-area: right; }
.item5 { grid-area: footer; }
.grid-container {
display: grid;
grid
'header header header header header'
'menu main main main right right'
'menu footer footer footer footer';
}
自己试试 »
相关页面
CSS 教程:CSS 网格容器
CSS 参考:The grid-template-areas 属性
CSS 参考:The grid-template-rows 属性
CSS 参考:The grid-template-columns 属性
CSS 参考:The grid-auto-rows 属性
CSS 参考:The grid-auto-columns 属性
CSS 参考:The grid-auto-flow 属性
CSS 参考:The grid-row-gap 属性
CSS 参考:The grid-column-gap 属性