Web速查-索引

Alt text

定义

grid-auto-columns 属性设置网格容器中列的尺寸。

该属性只会影响未设置尺寸的列。

语法

grid-auto-columns: auto|max-content|min-content|length;

属性值

描述
auto 默认值。由容器尺寸决定列的尺寸。
max-content 根据列中最大的项目设置每列的尺寸。
min-content 根据列中最小的项目设置每列的尺寸。
minmax(min.max) 设置大于或等于 min 且小于或等于 max 的尺寸范围。
length 设置列的尺寸,通过使用合法的长度值。
% 设置列的尺寸,通过使用百分比值。

实例

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
.item1 {
grid-area: 1 / 1 / 2 / 2;
}
.item2 {
grid-area: 1 / 2 / 2 / 3;
}
.item3 {
grid-area: 1 / 3 / 2 / 4;
}
.item4 {
grid-area: 2 / 1 / 3 / 2;
}
.item5 {
grid-area: 2 / 2 / 3 / 3;
}
.item6 {
grid-area: 2 / 3 / 3 / 4;
}
.grid-container {
display: grid;
grid-auto-columns: 50px;
grid-gap: 10px;
background-color: lightblue;
padding: 10px;
}
.grid-container>div {
background-color: lightpink;
text-align: center;
padding: 20px 0;
font-size: 30px;
}
</style>
</head>
<body>
<div class="grid-container">
<div class="item1">1</div>
<div class="item2">2</div>
<div class="item3">3</div>
<div class="item4">4</div>
<div class="item5">5</div>
<div class="item6">6</div>
</div>
</body>
</html>
1
2
3
4
5
6

浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号

Safari Chrome FireFox IE
3.1 4.0 3.0 8.0