制作一个三列网格布局,其中第一行高 150 像素:
.grid-container {
display: grid;
grid-template: 150px / auto auto auto;
}
亲自试一试 »
这个grid-template
property 是以下属性的简写属性:
默认值: | 没有 没有 没有 |
---|---|
遗传: | 不 |
可动画: | 是的。阅读可动画的尝试一下 |
版本: | CSS 网格布局模块级别 1 |
JavaScript 语法: | 对象.style.gridTemplate="250px / auto auto"尝试一下 |
表中的数字指定完全支持该属性的第一个浏览器版本。
Property | |||||
---|---|---|---|---|---|
grid-template | 57 | 16 | 52 | 10 | 44 |
grid-template: none|
grid-template-rows /
grid-template-columns|
grid-template-areas|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 ❯ |
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-template:
'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-template:
'header header header header header header'
'menu main main main right right'
'menu footer footer footer footer footer';
}
亲自试一试 »
CSS 教程:CSS 网格项
CSS 参考:网格区域属性
CSS 参考:网格模板行属性
CSS 参考:网格模板列属性
CSS 参考:网格模板区域属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!