讓一個元素垂直水平居中的三種方法【轉】

第一種方法:css

div.box{html

weight:200px;css3

height:400px;瀏覽器

<!--把元素變成定位元素-->orm

position:absolute;htm

<!--設置元素的定位位置,距離上、左都爲50%-->blog

left:50%;it

top:50%;io

<!--設置元素的左外邊距、上外邊距爲寬高的負1/2-->form

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

相關文章
相關標籤/搜索