要實(shí)現(xiàn)水平居中,可以使用以下方法:
.element {
width: 200px;
margin: 0 auto;
}
.parent {
display: flex;
justify-content: center;
}
.child {
/* 子元素的樣式 */
}
.parent {
position: relative;
}
.child {
position: absolute;
left: 50%;
transform: translateX(-50%);
}