📅  最后修改于: 2023-12-03 15:30:08.028000             🧑  作者: Mango
CSS bottom属性用于设置元素相对于其父元素底部边缘的偏移量。它可用于绝对定位元素的水平和垂直定位。
selector {
bottom: auto|length|initial|inherit;
}
.container {
position: relative;
}
.box {
position: absolute;
bottom: 5px;
}
.container {
position: relative;
height: 200px;
}
.box {
position: absolute;
bottom: 50%;
transform: translateY(50%);
}
.container {
position: relative;
height: 200px;
}
.box {
position: absolute;
bottom: 0;
top: 50px;
}
以上就是CSS bottom属性的介绍。