元素水平垂直居中
时间:2016-06-19 08:59:25
收藏:0
阅读:237
一些水平垂直居中的样式
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
评论(0)