一些水平垂直居中的样式
1, some-class{
position:absolute;
left:0px;
top:0px;
right:0px;
bottom:0px;
margin:auto;
}
2, some-class{
position: absolute;
top: 50%;
left: 50%;
margin-top: -height/2;
margin-left: -width/2
}
时间: 2024-11-03 21:49:48
一些水平垂直居中的样式
1, some-class{
position:absolute;
left:0px;
top:0px;
right:0px;
bottom:0px;
margin:auto;
}
2, some-class{
position: absolute;
top: 50%;
left: 50%;
margin-top: -height/2;
margin-left: -width/2
}