01 March 2009 on css, 垂直, 居中css
利用 CSS 來實現對象的垂直居中有許多不一樣的方法,比較難的是選擇那個正確的方法。我下面說明一下我看到的好的方法和怎麼來建立一個好的居中網站。html
使用 CSS 實現垂直居中並不容易。有些方法在一些瀏覽器中無效。下面咱們看一下使對象垂直集中的5種不一樣方法,以及它們各自的優缺點。(能夠看看測試頁面,有簡短解釋。)ios
這個方法把一些 div
的顯示方式設置爲表格,所以咱們可使用表格的 vertical-align
property 屬性。css3
<div id="wrapper"> <div id="cell"> <div class="content">Content goes here</div> </div> </div>
#wrapper { display: table; } #cell { display: table-cell; vertical-align: middle; }
優勢:web
content
能夠動態改變高度(不需在 CSS 中定義)。當 wrapper
裏沒有足夠空間時, content
不會被截斷缺點:apache
這個方法使用絕對定位的 div
,把它的 top
設置爲 50%
,top margin
設置爲負的 content
高度。這意味着對象必須在 CSS 中指定固定的高度。api
由於有固定高度,或許你想給 content
指定 overflow:auto
,這樣若是 content
太多的話,就會出現滾動條,以避免content
溢出。瀏覽器
<div class="content"> Content goes here</div>
#content { position: absolute; top: 50%; height: 240px; margin-top: -120px; /* negative half of the height */ }
優勢:app
缺點:less
content
會消失(相似div
在 body
內,當用戶縮小瀏覽器窗口,滾動條不出現的狀況)這種方法,在 content 元素外插入一個 div。設置此 div
height:50%; margin-bottom:-contentheight;
。
content 清除浮動,並顯示在中間。
<div id="floater"> <div id="content">Content here</div> </div>
#floater { float: left; height: 50%; margin-bottom: -120px; } #content { clear: both; height: 240px; position: relative; }
優勢:
content
不會被截斷,滾動條出現缺點:
這個方法使用了一個 position:absolute
,有固定寬度和高度的 div
。這個 div
被設置爲 top:0; bottom:0;
。可是由於它有固定高度,其實並不能和上下都間距爲 0,所以 margin:auto;
會使它居中。使用 margin:auto;
使塊級元素垂直居中是很簡單的。
<div id="content"> Content here</div>
#content { position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; height: 240px; width: 70%; }
優勢:
缺點:
content
被截斷,可是不會有滾動條出現這個方法只能將單行文本置中。只須要簡單地把 line-height
設置爲那個對象的 height
值就可使文本居中了。
<div id="content"> Content here</div>
#content { height: 100px; line-height: 100px; }
優勢:
缺點:
這個方法在小元素上很是有用,例如使按鈕文本或者單行文本居中。
我最喜歡的是方法三,缺點很少。由於 content
會清除浮動,因此能夠在它上面放置別的元素,而且當窗口縮放時,
居中的 content
不會把另外的元素蓋住。看例子。
<div id="top"> <h1>Title</h1> </div> <div id="floater"></div> <div id="content">Content Here</div>
#floater { float: left; height: 50%; margin-bottom: -120px; } #top { float: right; width: 100%; text-align: center; } #content { clear: both; height: 240px; position: relative; }
如今你知道是怎麼回事了,如今咱們開始建立一個簡單可是有趣的網站。最終的樣子是這樣的:
步驟一
以語義化標籤開始是很好的。下面是咱們的頁面構成:
#floater (to push the content into the middle) #centred (the centre box) #side #logo #nav (unordered list <ul>) #content #bottom (for copyright, etc.)
這是我用到的 xhtml 代碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>A Centred Company</title> <link rel="stylesheet" href="styles.css" type="text/css" media="all" /> </head> <body> <div id="floater"></div> <div id="centered"> <div id="side"> <div id="logo"> <strong><span>A</span> Company</strong> </div> <ul id="nav"> <li><a href="#">Home</a></li> <li><a href="#">Products</a></li> <li><a href="#">Blog</a></li> <li><a href="#">Contact</a></li> <li><a href="#">About</a></li> </ul> </div> <div id="content"> <h1>Page Title</h1> <p>Holisticly re-engineer value-added outsourcing after process-centric collaboration and idea-sharing. Energistically simplify impactful niche markets via enabled imperatives. Holisticly predominate premium innovation after compelling scenarios. Seamlessly recaptiualize high standards in human capital with leading-edge manufactured products. Distinctively syndicate standards compliant schemas before robust vortals. Uniquely recaptiualize leveraged web-readiness vis-a-vis out-of-the-box information.</p> <h2>Heading 2</h2> <p>Efficiently embrace customized web-readiness rather than customer directed processes. Assertively grow cross-platform imperatives vis-a-vis proactive technologies. Conveniently empower multidisciplinary meta-services without enterprise-wide interfaces. Conveniently streamline competitive strategic theme areas with focused e-markets. Phosfluorescently syndicate world-class communities vis-a-vis value-added markets. Appropriately reinvent holistic services before robust e-services.</p> </div> </div> <div id="bottom"> <p>Copyright notice goes here</p> </div> </body> </html>
步驟二:
如今咱們開始用一些基本的 CSS 來給頁面添加樣式。把如下代碼放入在咱們的 html
頁面頂部被引入的 style.css。
html, body { margin: 0; padding: 0; height: 100%; } body { background: url('page_bg.jpg') 50% 50% no-repeat #FC3; font-family: Georgia, Times, serifs; } #floater { position: relative; float: left; height: 50%; margin-bottom: -200px; width: 1px; } #centered { position: relative; clear: left; height: 400px; width: 80%; max-width: 800px; min-width: 400px; margin: 0 auto; background: #fff; border: 4px solid #666; } #bottom { position: absolute; bottom: 0; right: 0; } #nav { position: absolute; left: 0; top: 0; bottom: 0; right: 70%; padding: 20px; margin: 10px; } #content { position: absolute; left: 30%; right: 0; top: 0; bottom: 0; overflow: auto; height: 340px; padding: 20px; margin: 10px; } #centered { -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; } h1, h2, h3, h4, h5, h6 { font-family: Helvetica, Arial, sans-serif; font-weight: normal; color: #666; } h1 { color: #f93; border-bottom: 1px solid #ddd; letter-spacing: -0.05em; font-weight: bold; margin-top: 0; padding-top: 0; } #bottom { padding: 10px; font-size: 0.7em; color: #f03; } #logo { font-size: 2em; text-align: center; color: #999; } #logo strong { font-weight: normal; } #logo span { display: block; font-size: 4em; line-height: 0.7em; color: #666; } p, h2, h3 { line-height: 1.6em; } a { color: #f03; }
在咱們可以把 content
垂直居中以前, body
和 html
應該被拉伸到 100% 的高度。因爲 height
在 padding
和 margin
以內,因此咱們要把它們設成 0 以防止由於很小的 margin
出現滾動條。
floater
的 margin-bottom
是 content
高度(400px
)的一半, -200px
。
如今能夠看到一下效果:
#centred
的寬度爲 80%。這能夠市網頁隨着顯示器的大小而變化。通常稱做流體佈局。設置 min-width
和 max-width
以免網頁過大或者太小。 可是 IE 不支持 min/max-width
。顯然能夠用固定寬度來代替。
由於 #centred
是相對定位的,在它裏面咱們能夠用絕對定位來定位元素。設置 #content
的 overflow:auto;
以免滾動條的出現。IE 不怎麼喜歡 overflow:auto;
除非咱們指定高度(不是 top
和 bottom
的定位,也不是 %)
所以咱們給它指定高度。
步驟三
最後要作的就是再添加點樣式,讓頁面好看點。從目錄開始吧。
#nav ul { list-style: none; padding: 0; margin: 20px 0 0 0; text-indent: 0; } #nav li { padding: 0; margin: 3px; } #nav li a { display: block; background-color: #e8e8e8; padding: 7px; margin: 0; text-decoration: none; color: #000; border-bottom: 1px solid #bbb; text-align: right; } #nav li a::after { content: '»'; color: #aaa; font-weight: bold; display: inline; float: right; margin: 0 2px 0 5px; } #nav li a:hover, #nav li a:focus { background: #f8f8f8; border-bottom-color: #777; } #nav li a:hover::after { margin: 0 0 0 7px; color: #f93; } #nav li a:active { padding: 8px 7px 6px 7px; }
須要注意的是 #centred
的圓角。 CSS3 中,應該有 border-radius
屬性來設定圓角的半徑(可參考 CSS3之旅: border-radius(圓角) – 糖伴西紅柿)。如今的流行的瀏覽器都還不支持,除非用 -moz
(Molilla Firefox) 或者 -webit
(Safari/Webkit) 前綴.
兼容性注意事項
#floater
必須指定寬度,不然在任意版本 IE 中,它都啥也不幹更多的想法
利用居中的網頁能夠作不少有意思的事情。我在從新設計 SWFObject Generator 2.0 (使用 SWFObject2.0 生成代碼)使用了這個想法。這裏有另外的一個想法。
資料
如下是我參考的一些資料,推薦閱讀。
Understanding vertical-align, or 「How (Not) To Vertically Center Content」
Vertical centering using CSS
Vertical Centering in CSS
糖伴西紅柿說:
水平居中常常用,其實垂直居中也頗有用的。平時用的最多的應該是方法五了,算是個小技巧吧。
原文:http://www.qianduan.net/css-to-achieve-the-vertical-center-of-the-five-kinds-of-methods
譯自:http://blog.themeforest.net/tutorials/vertical-centering-with-css/
複製於: https://www.qianduan.net/css-to-achieve-the-vertical-center-of-the-five-kinds-of-methods/