码迷,mamicode.com
首页 > 其他好文 > 详细

让一个元素垂直水平居中的三种方法【转】

时间:2016-12-05 22:22:05      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:位置   支持   form   html   兼容   height   for   距离   abs   

第一种方法:

div.box{

weight:200px;

height:400px;

<!--把元素变成定位元素-->

position:absolute;

<!--设置元素的定位位置,距离上、左都为50%-->

left:50%;

top:50%;

<!--设置元素的左外边距、上外边距为宽高的负1/2-->

margin-left:-100px;

margin-top:-200px;

}

*兼容性好;缺点:必须知道元素的宽高

-------------

第二种方法:

div.box{

weight:200px;

height:400px;

<!--把元素变成定位元素-->

position:absolute;

<!--设置元素的定位位置,距离上、左都为50%-->

left:50%;

top:50%;

<!--设置元素的相对于自身的偏移度为负50%(也就是元素自身尺寸的一半)-->

transform:translate(-50%,-50%);

}

 

*这是css3里的样式;缺点:兼容性不好,只支持IE9+的浏览器

 

---------------

第三种方法

div.box{

weight:200px;

height:400px;

<!--把元素变成定位元素-->

position:absolute;

<!--设置元素的定位位置,距离上、下、左、右都为0-->

left:0;

right:0;

top:0;

bottom:0;

<!--设置元素的margin样式值为 auto-->

margin:auto;

}

转载自:http://www.cnblogs.com/linsinan/p/6132241.html

让一个元素垂直水平居中的三种方法【转】

标签:位置   支持   form   html   兼容   height   for   距离   abs   

原文地址:http://www.cnblogs.com/zhao-bo/p/6135651.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!