标签:
一些水平垂直居中的样式
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
}
标签:
原文地址:http://www.cnblogs.com/yezongyang/p/5597421.html