// padding实现
.parent {
width: 300px;
height: 500px;
padding-left: 100px; //(父盒子的width - 子盒子的width)/ 2
padding-top: 175px; //(父盒子的height - 子盒子的height)/ 2
}
.child {
width: 100px;
height: 150px;
}
// margin实现
.parent {
width: 300px;
height: 500px;
position: relative;
}
.child {
width: 100px;
height: 150px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -50px; // -(子盒子的width / 2)
margin-top: -75px; // -(子盒子的height / 2)
}