CSS垂直居中方法一:
這個(gè)方法使用絕對定位的 div,把它的 top 設(shè)置為 50%,top margin 設(shè)置為負(fù)的 content 高度。這意味著對象必須在 CSS 中指定固定的高度。
因?yàn)橛泄潭ǜ叨龋蛟S你想給 content 指定 overflow:auto,這樣如果 content 太多的話,就會出現(xiàn)滾動條,以免content 溢出。
Content goes here
#content {
position:absolute;
top:50%;
height:240px;
margin-top:-120px; /* negative half of the height */
}
優(yōu)點(diǎn):
適用于所有瀏覽器
不需要嵌套標(biāo)簽
缺點(diǎn):
沒有足夠空間時(shí),content 會消失(類似div 在 body 內(nèi),當(dāng)用戶縮小瀏覽器窗口,滾動條不出現(xiàn)的情況)
CSS垂直居中方法二:
這個(gè)方法把一些 div 的顯示方式設(shè)置為表格,因此我們可以使用表格的 vertical-align property 屬性。
Content goes here
#wrapper {display:table;}
#cell {display:table-cell; vertical-align:middle;}
優(yōu)點(diǎn):
content 可以動態(tài)改變高度(不需在 CSS 中定義)。當(dāng) wrapper 里沒有足夠空間時(shí), content 不會被截?cái)?
缺點(diǎn):
Internet Explorer(甚至 IE8 beta)中無效,許多嵌套標(biāo)簽(其實(shí)沒那么糟糕,另一個(gè)專題)
CSS垂直居中方法三:
這種方法,在 content 元素外插入一個(gè) div。設(shè)置此 div height:50%; margin-bottom:-contentheight;。
content 清除浮動,并顯示在中間。
Content here
#floater {float:left; height:50%; margin-bottom:-120px;}
#content {clear:both; height:240px; position:relative;}
優(yōu)點(diǎn):
適用于所有瀏覽器
沒有足夠空間時(shí)(例如:窗口縮小) content 不會被截?cái),滾動條出現(xiàn)
缺點(diǎn):
唯一我能想到的就是需要額外的空元素了(也沒那么糟,又是另外一個(gè)話題)