1. 使用【Flex 布局】
.container {
display: flex;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
}
2. 使用【Grid 布局】
.container {
display: grid;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
}
3. 使用【Table 布局】
.container {
display: table;
}
.child {
display: table-cell;
text-align: center; /* 水平居中 */
vertical-align: middle; /* 垂直居中 */
}
4. 使用【绝对定位】+ 【transform 属性】
.container {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
5. 使用【绝对定位】+ 【margin 属性】 ——(仅适用于:已知元素宽高)
.container {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
margin: -50px 0 0 -50px; /* 其中50px是元素宽高的一半 */
}
单纯的元素左右居中对齐:
块级元素可以使用 magrin: 0 auto
;
非块级元素使用 text-align: center;
文章来源地址https://www.toymoban.com/news/detail-645111.html
文章来源:https://www.toymoban.com/news/detail-645111.html
到了这里,关于【前端 | CSS系列】—— 第1篇:如何实现水平垂直居中对齐?的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!