Web速查-索引

Alt text

定义

justify-self 属性设置单个盒子在其布局容器适当轴中的对其方式。

语法

justify-self: auto|stretch|normal|start|end|center

属性值

描述
auto 默认值,使用其父级元素盒子的 justify-items 属性的值,除非它没有父级元素, 或者是绝对定位的,这些情况下,auto 代表了 normal。
normal 这个关键字会导致类似于 stretch 的行为,除了具有高宽比或固有大小的盒子,它的行为类似于 start 。
stretch 拉伸。表现为水平填充。
start 表现为网格水平尺寸收缩为内容大小,同时沿着网格线左侧对齐显示。
end 表现为网格水平尺寸收缩为内容大小,同时沿着网格线右侧对齐显示。
center 表现为网格水平尺寸收缩为内容大小,同时在当前网格区域内部水平居中对齐显示。

实例

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
.grid-container {
display: grid;
grid-template-columns: auto auto auto;
grid-gap: 10px;
background-color: lightblue;
padding: 10px;
}
.grid-container>div {
background-color: lightpink;
text-align: center;
padding: 20px 0;
font-size: 30px;
}
.item1 {
justify-self: center;
}
</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