目录

CSS grid 属性


示例

制作一个三列网格布局,其中第一行高 150 像素:

.grid-container {
  display: grid;
  grid: 150px / auto auto auto;
}
亲自试一试 »

定义和用法

这个gridproperty 是以下属性的简写:

展示演示❯

默认值: 无 无 无 自动 自动行
遗传:
可动画: 是的,查看各个属性阅读可动画的尝试一下
版本: CSS 网格布局模块级别 1
JavaScript 语法: 对象.style.grid="250px / auto auto auto"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
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;

属性值

Value Description Demo
none Default value. No specific sizing of the columns or rows
grid-template-rows / grid-template-columns Specifies the size(s) of the columns and rows Demo ❯
grid-template-areas Specifies the grid layout using named items Demo ❯
grid-template-rows / grid-auto-columns Specifies the size (height) of the rows, and the auto size of the columns
grid-auto-rows / grid-template-columns Specifies the auto size of the rows, and sets the grid-template-columns property
grid-template-rows / grid-auto-flow grid-auto-columns Specifies the size (height) of the rows, and how to place auto-placed items, and the auto size of the columns
grid-auto-flow grid-auto-rows / grid-template-columns Specifies how to place auto-placed items, and the auto size of the rows, and sets the grid-template-columns property
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about 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 参考:网格模板区域属性

CSS 参考:网格模板行属性

CSS 参考:网格模板列属性

CSS 参考:网格自动行属性

CSS 参考:网格自动列属性

CSS 参考:网格自动流属性

CSS 参考:网格行间隙属性

CSS 参考:网格列间隙属性