1. flex布局
// 父级div
.box {
display: flex;
align-items: center;
justify-content: center;
}
2. 定位方法
div1 {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
或者
.div1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
网友评论