前端页面垂直居中:
- display:flex
.box{
width:300px;
height:300px;
display:flex;
justify-content:center;
align-items:center;
background-color: lightslategray;
}
.box1{
height:100px;
width:100px;
background-color: lightsteelblue;
}
- 先整体移动50%,再移动自身的50%
*{
background-color: lightslategray;
}
.box{
height: 300px;
width: 300px;
background-color: lightsteelblue;
position: absolute;
left: 50%;
top: 50%;
margin-top: -150px;
margin-left: -150px; //自身的一半
/* transform: translate(-50%,-50%); */ //换成这个效果一样
}