CSS垂直水平完全居中手冊
居中一直是CSS中被抱怨的典型。為什麼實現起來這麼辛苦?所以有人被嘲笑。我覺得問題不是沒有辦法做到,只是視情況而定,有很多不同方式,但是很難弄清楚應該用何種方式。
因此我寫了這篇文章,希望能把他變得容易點。
水平居中
內聯元素(inline or inline-*)居中?
你可以讓他相對父級塊級元素居中對齊
.center-children { text-align: center; }
塊級元素(block level)居中?
你可以通過設定margin-left和margin-right為auto讓它居中(同時還要設定width,否則它就會承滿整個容器,無法看出居中效果),如。
.center-me { margin: 0 auto; }
如果有很多塊級元素呢?
如果你有很勻塊級元素需要水平居中成一行,你最好使用一個不同的display型別。這是一個使用inline-block和flex的例子。
線上示例: http://jsfiddle.net/ourjs/0b6b7wt8/
<main class="inline-block-center"> <div> I'm an element that is block-like with my siblings and we're centered in a row. </div> <div> I'm an element that is block-like with my siblings and we're centered in a row. I have more content in me than my siblings do. </div> <div> I'm an element that is block-like with my siblings and we're centered in a row. </div> </main> <main class="flex-center"> <div> I'm an element that is block-like with my siblings and we're centered in a row. </div> <div> I'm an element that is block-like with my siblings and we're centered in a row. I have more content in me than my siblings do. </div> <div> I'm an element that is block-like with my siblings and we're centered in a row. </div> </main>
body { background: #f06d06; font-size: 80%; } main { background: white; margin: 20px 0; padding: 10px; } main div { background: black; color: white; padding: 15px; max-width: 125px; margin: 5px; } .inline-block-center { text-align: center; } .inline-block-center div { display: inline-block; text-align: left; } .flex-center { display: flex; justify-content: center; }
垂直居中
垂直居中在CSS中有點棘手
內聯元素(inline or inline-*)居中,像文字和連結那樣的?
它是一行的嗎?
有時侯元素可以表現像垂直居中,只是因為它們有相等的上下padding
.link { padding-top: 30px; padding-bottom: 30px; }
如果padding因為某些原因不能用,而且文字不會換行的情況下,你可以使用line-height,讓其與height相等去對齊文字。
.center-text-trick { height: 100px; line-height: 100px; white-space: nowrap; }
它是多行的?
上下等padding的方式也可以讓多行居中,但是如果這方法沒用,你可以讓這些文字的容器按table cell模式顯示,然後設定文字的vertical-align屬性對齊,就像talbe那樣
線上演示: http://jsfiddle.net/ourjs/0fn2u4rc/
<table> <tr> <td> I'm vertically centered multiple lines of text in a real table cell. </td> </tr> </table> <div class="center-table"> <p>I'm vertically centered multiple lines of text in a CSS-created table layout.</p> </div>
body { background: #f06d06; font-size: 80%; } table { background: white; width: 240px; border-collapse: separate; margin: 20px; height: 250px; } table td { background: black; color: white; padding: 20px; border: 10px solid white; /* default is vertical-align: middle; */ } .center-table { display: table; height: 250px; background: white; width: 240px; margin: 20px; } .center-table p { display: table-cell; margin: 0; background: black; color: white; padding: 20px; border: 10px solid white; vertical-align: middle; }
塊級元素(block level)垂直居中?
你知道元素的高度嗎?
出於很多方面的原因,不知道網頁佈局的高度是相當普遍的。
但是如果你的佈局有一個固定高度,你就可以這樣垂直居中:
.parent { position: relative; } .child { position: absolute; top: 50%; height: 100px; margin-top: -50px; /* 如果沒有使用: border-box; 的盒子模型則需要設定這個 */ }
元素的高度是未知的
儘管未知,但你仍有可能向上推移50%的寬度
線上演示: http://jsfiddle.net/ourjs/9sLf7p56/
.parent { position: relative; } .child { position: absolute; top: 50%; transform: translateY(-50%); }
你可以使用flexbox嗎?
這並不奇怪,使用flexbox會容易非常多
<main> <div> I'm a block-level element with an unknown height, centered vertically within my parent. </div> </main>
body { background: #f06d06; font-size: 80%; } main { background: white; height: 300px; width: 200px; padding: 20px; margin: 20px; display: flex; flex-direction: column; justify-content: center; resize: vertical; overflow: auto; } main div { background: black; color: white; padding: 20px; resize: vertical; overflow: auto; }
同時水平和垂直居中
元素有固定的寬度和高度
如果元素的寬度和高度是固定的,你需要先絕對居中,然後上移和左移50%的寬度即可,這種方案有極好的跨瀏覽器支援。
.parent { position: relative; } .child { width: 300px; height: 100px; padding: 20px; position: absolute; top: 50%; left: 50%; margin: -70px 0 0 -170px; }
元素的寬度高度未知
如果你不知道高度和寬度(可變的),你可以使用transofrm屬性在兩個方向都平移負50%
.parent { position: relative; } .child { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
原文地址: css-tricks.com
相關文章
- css水平垂直居中CSS
- CSS垂直居中和水平居中CSS
- CSS水平居中和垂直居中CSS
- CSS水平居中和垂直居中的方法CSS
- CSS視窗垂直水平居中CSS
- 淺談居中問題(水平居中、垂直居中、水平垂直居中)
- css 水平垂直居中實現方式CSS
- 【20190129】CSS-垂直水平居中相關CSS
- CSS div水平垂直居中效果詳解CSS
- 水平居中和垂直居中
- 水平居中、垂直居中、水平垂直居中、浮動居中、絕對定位居中…….幫你搞定
- 元素垂直水平居中
- div 水平垂直 居中
- CSS實現水平垂直居中的方式有哪些?CSS
- css實現水平垂直居中的幾種方式CSS
- CSS元素(文字、圖片)水平垂直居中方法CSS
- css實現垂直水平居中的幾種方法CSS
- 元素水平居中,垂直居中方法
- CSS 垂直居中CSS
- 一起搞懂 CSS 水平居中與垂直居中的16個方法CSS
- 三行CSS程式碼實現水平垂直居中CSS
- 【CSS三種居中方案全解】CSS水平垂直居中常用方法集結CSS
- div垂直居中-CSS元素垂直居中方法CSS
- 如何實現水平垂直居中?
- CSS 實現元素在當前視窗水平垂直居中CSS
- CSS實現水平垂直居中的1010種方式(史上最全)CSS
- 16種方法實現水平居中垂直居中
- 水平垂直居中的實現方法
- 設定圖片水平垂直居中
- 元素自適應水平垂直居中
- 不定寬度下,元素的垂直居中,水平居中
- CSS實現水平、垂直居中,N種方法,徹底說透!CSS
- CSS垂直居中方法CSS
- CSS未知高度垂直居中CSS
- 關於css 的垂直居中CSS
- 影片直播app原始碼,CSS div水平垂直居中和div置於底部APP原始碼CSS
- CSS 文字li元素中垂直居中CSS
- CSS垂直居中的七個方法CSS
- CSS多行文字垂直居中效果CSS