CSS3实现垂直居中办法:
将盒子如下设置即可实现水平和垂直居中,justify-content保证水平居中,align-items保证垂直居中:
.box{
display: flex;
justify-content:center;
align-items:Center;
}
将盒子如下设置即可实现水平和垂直居中,justify-content保证水平居中,align-items保证垂直居中:
.box{
display: flex;
justify-content:center;
align-items:Center;
}