我們?cè)谑褂?CSS 來(lái)布局時(shí)經(jīng)常需要進(jìn)行居中,有時(shí)一個(gè)屬性就能搞定,有時(shí)則需要一定的技巧才能兼容到所有瀏覽器,利用 CSS 來(lái)實(shí)現(xiàn)對(duì)象的垂直居中有許多不同的方法,比較難的是應(yīng)該選擇哪種正確的方法。比如我們都知道 margin:0 auto;
的樣式能讓元素水平居中,而margin: auto;
卻不能做到垂直居中……
下面就 CSS 居中的一些常用方法做個(gè)集中的介紹。
首先是水平居中,最簡(jiǎn)單的辦法當(dāng)然就是:
margin:0 auto;
也就是將 margin-left
屬性設(shè)置為 和
margin-rightauto
,從而達(dá)到水平居中的效果。
line-height
設(shè)為 height
的一樣即可:
.wrap{
line-height: 200px;/*垂直居中關(guān)鍵*/
text-align:center;
height: 200px;
font-size: 36px;
background-color: #ccc;
}
padding
和 background-clip
配合實(shí)現(xiàn)div的水平垂直居中: background-clip
設(shè)置為 content-box
, 將背景裁剪到內(nèi)容區(qū)外沿,再利用 padding
設(shè)為外 div 減去內(nèi) div 的差的一半,來(lái)實(shí)現(xiàn):
.children {
width: 100px;
height: 100px;
padding: 50px;
background-color: black;
background-clip:content-box;/*居中的關(guān)鍵*/
提示:關(guān)于 padding
的使用,你可以參考 CSS padding 屬性部分。
有許多 hacks
,負(fù) margin
,影子元素 : : before
等。如果你的內(nèi)容不是固定大小的話,它們大部分是很脆弱的。
用 position
加 translate(-50%,-50%)
比較奇特,百分比計(jì)算不是以父元素為基準(zhǔn),而是以自己為基準(zhǔn)。
示例:
#ex3_content{
left:50%; top:50%;
transform:translate(-50%,-50%);
-webkit-transform:translate(-50%,-50%);
background-color:gray; color:white; position:absolute; }
這個(gè)技巧相當(dāng)囂張,同樣適用于沒(méi)固定大小的內(nèi)容,min-width
,max-height
,overflow:scroll
等。
絕對(duì)定位的元素的位置相對(duì)于最近的已定位祖先元素,如果元素沒(méi)有已定位的祖先元素,那么它的位置相對(duì)于最初的包含塊。
父容器元素:position: relative
.Absolute-Center {
width: 50%;
height: 50%;
overflow: auto;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
注意:高度必須定義,建議加 overflow: auto
,防止內(nèi)容溢出。
內(nèi)容元素:position: fixed
,z-index: 999
,記住父容器元素position: relative
.Absolute-Center.is-Fixed {
width: 50%;
height: 50%;
overflow: auto;
margin: auto;
position: fixed;
top: 0; left: 0; bottom: 0; right: 0;
z-index: 999;
}
百分比寬高,最大、最小寬度均可以,加 padding
也可以
.Absolute-Center.is-Responsive {
width: 60%;
height: 60%;
min-width: 400px;
max-width: 500px;
padding: 40px;
overflow: auto;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
只要margin: auto;
在,內(nèi)容塊將垂直居中,top
, left
, bottom
, right
可以設(shè)置偏移。
.Absolute-Center.is-Right {
width: 50%;
height: 50%;
margin: auto;
overflow: auto;
position: absolute;
top: 0; left: auto; bottom: 0; right: 20px;
text-align: right;
}
居中內(nèi)容比父容器高時(shí),防止溢出,加 overflow: auto
(沒(méi)有任何 padding
時(shí),也可以加 max-height: 100%;
)。
.Absolute-Center.is-Overflow {
width: 50%;
height: 300px;
max-height: 100%;
margin: auto;
overflow: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
resize
屬性可以讓尺寸可調(diào)。 設(shè)置 min- /max-
限制尺寸,確定加了 overflow: auto
。
.Absolute-Center.is-Resizable {
min-width: 20%;
max-width: 80%;
min-height: 20%;
max-height: 80%;
resize: both;
overflow: auto;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
首先我們還是定義父子div:
這里我們利用將子 div 的 margin-top
設(shè)置為父 div 高度減去子 div 高度的一半,然后再通過(guò) overflow
設(shè)置為 hidden
來(lái)觸發(fā)父 div 的 BFC,CSS代碼如下:
.parent {
margin:0 auto;
height:@parentWidth;
width:@parentWidth;
background: red;
overflow:hidden;/*觸發(fā)BFC*/
}
position:absolute
搭配top
,left 50%
,再將 margin
設(shè)為負(fù)值也可以對(duì) div 進(jìn)行水平垂直居中,首先還是需要定義父子 div:
.children {
position:absolute;
left:50%;
top:50%;
margin:-25px 0 0 -25px ;
height:50px;
width:50px;
background-color: black;
}
margin
中的值為該 div 寬度的一半,最后效果圖:
一般的圖片居中都是和 text-align
一樣,將圖片包裝在一個(gè) div 中,將該 div 的 text-align
設(shè)為 center
即可。
有一種特殊的方式,利用了一個(gè)圖片進(jìn)行占位,以讓父容器獲得高寬,從而讓進(jìn)行 -50% 偏移的圖片能有一個(gè)參照容器作百分比計(jì)算。優(yōu)點(diǎn)是可以不知道圖片的大小,隨便放張尺寸不超過(guò)父容器的圖片上去都能做到居中。另外,兼容性好,IE6 都是能順利兼容的。代碼如下:
p {
position:absolute;
top:50%;
left:50%;}
.show-img {
position:absolute;
right:50%;
bottom:50%;}
上面講到的 div 居中的例子中,div 的寬度都是固定的,然而實(shí)際項(xiàng)目中,有可能遇到不定寬的 div,特別是響應(yīng)式或者移動(dòng)端的設(shè)計(jì)中,更加常見(jiàn)。所以下面介紹一種不需要定寬的 div 水平垂直居中方法。
先上代碼:
.children-inline {
position: relative;
left: -50%;
-webkit-transform : translate3d(0, -50%, 0);
transform : translate3d(0, -50%, 0);
background-color: black;
color:white;
}
float
,將需要居中的div的父 div 也就是 children
的寬度收縮,然后 left:50%
,將 children
的左邊與水平中線對(duì)齊。這個(gè)時(shí)候,還沒(méi)有真正居中,我們需要將 children-inner
左移動(dòng) -50%,這樣就水平居中了。
children
的 top 設(shè)為50%,然后其上邊和垂直中線對(duì)齊了,同樣,我們需要將children-inner
上移動(dòng) -50%。但是這個(gè) 50% 是計(jì)算不出來(lái)的,所以我們用到了 transform : translate3d(0, -50%, 0);
display:flex
來(lái)實(shí)現(xiàn)的水平垂直居中的方法。.parent {
display:flex;
align-items: center;/*垂直居中*/
justify-content: center;/*水平居中*/
width:100%;
height:100%;
background-color:red;
}
flex 除了可以用于表示居中之外,它還是一個(gè)強(qiáng)大的開(kāi)源應(yīng)用程序框架,允許使用相同的編程模型,工具和代碼庫(kù)構(gòu)建針對(duì)瀏覽器,移動(dòng)設(shè)備和桌面的傳統(tǒng)應(yīng)用程序。你可以在本站的《Flex教程》中掌握更多有關(guān)于Flex框架的詳細(xì)信息。
更多建議: