CSS有多种方法可以实现垂直水平居中,以下是其中几种常用的方法:
display
属性设置为flex
,并使用align-items: center
和justify-content: center
来实现垂直和水平居中。.parent {
display: flex;
align-items: center;
justify-content: center;
}
position
属性设置为absolute
,然后使用top: 50%
和left: 50%
将元素的左上角定位到父容器的中心点,最后使用transform: translate(-50%, -50%)
将元素向左上角偏移自身宽度和高度的一半。.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
display
属性设置为table
,然后将子元素的display
属性设置为table-cell
,使用vertical-align: middle
实现垂直居中,使用text-align: center
实现水平居中。.parent {
display: table;
}
.child {
display: table-cell;
vertical-align: middle;
text-align: center;
}
这些方法只是其中的几种,根据实际情况选择合适的方法来实现垂直水平居中。