第一種方法:
div.box{
weight:200px;
height:400px;
<!--把元素變成定位元素-->
position:absolute;
<!--設(shè)置元素的定位位置,距離上、左都為50%-->
left:50%;
top:50%;
<!--設(shè)置元素的左外邊距、上外邊距為寬高的負(fù)1/2-->
margin-left:-100px;
margin-top:-200px;
}
*兼容性好;缺點(diǎn):必須知道元素的寬高
-------------
第二種方法:
div.box{
weight:200px;
height:400px;
<!--把元素變成定位元素-->
position:absolute;
<!--設(shè)置元素的定位位置,距離上、左都為50%-->
left:50%;
top:50%;
<!--設(shè)置元素的相對于自身的偏移度為負(fù)50%(也就是元素自身尺寸的一半)-->
transform:translate(-50%,-50%);
}
*這是css3里的樣式;缺點(diǎn):兼容性不好,只支持IE9+的瀏覽器
---------------
第三種方法
div.box{
weight:200px;
height:400px;
<!--把元素變成定位元素-->
position:absolute;
<!--設(shè)置元素的定位位置,距離上、下、左、右都為0-->
left:0;
right:0;
top:0;
bottom:0;
<!--設(shè)置元素的margin樣式值為 auto-->
margin:auto;
}
*兼容性較好,缺點(diǎn):不支持IE7以下的瀏覽器
【 微信掃一掃 】