以下是六种常见的方法来将一个div水平垂直居中:
.parent {
display: flex;
justify-content: center;
align-items: center;
}
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
margin-top: -50px; /* 子元素高度的一半 */
margin-left: -50px; /* 子元素宽度的一半 */
}
.parent {
display: grid;
place-items: center;
}
.parent {
display: table;
}
.child {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
以上是六种常见的方法,你可以根据需要选择其中一种适合你的布局。