css實(shí)現(xiàn)各種居中

我們使用css過程中會(huì)碰到各種居中的需求惋戏,比如水平居中茫打、垂直居中水平屹耐、垂直同時(shí)居中少漆,而且同時(shí)會(huì)有各種各樣的前提條件臼膏,比如待居中元素高度已知待居中元素高度未知示损、容器元素高度已知渗磅、容器元素高度未知等,現(xiàn)在總結(jié)下在各種前提條件下如何實(shí)現(xiàn)元素居中检访。注意始鱼,我們一般所說的居中是指的某個(gè)元素在包含塊內(nèi)的居中。

水平居中

行內(nèi)元素水平居中

行內(nèi)元素(包括行內(nèi)塊級(jí)元素(inline-block))水平居中很簡(jiǎn)單烛谊,使用text-align: center即可實(shí)現(xiàn):

<div class="centered-text">
  inline elements horizontally center
</div>

<div class="centered-text">
  <a href="#0">One</a>
  <a href="#0">Two</a>
  <a href="#0">Three</a>
  <a href="#0">Four</a>
</div>
body {
  background-color: #f06d06;
  margin: 0;
}
div.centered-text {
  background-color: #fff;
  text-align: center;
  margin-top: 30px;
  padding: 10px 0;
}

div.centered-text a {
  text-decoration: none;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  padding: 2px 8px;
}

實(shí)現(xiàn)效果如下:


行內(nèi)元素水平居中

塊級(jí)元素水平居中

塊級(jí)元素水平居中實(shí)現(xiàn)起來也很簡(jiǎn)單风响,只需要將margin-left以及margin-right設(shè)置為auto即可嘉汰。不過有個(gè)前提條件就是需要設(shè)置witdh為一定寬度丹禀,否則塊級(jí)元素默認(rèn)寬度會(huì)占滿整個(gè)包含塊,這時(shí)居中也就無從談起了鞋怀。塊級(jí)元素水平居中實(shí)現(xiàn)如下:

<div class="container">
  <div class="center">
    I'm swf, I'm from China.
  </div>
</div>
body {
  margin: 0;
  background-color: #f06d06;
}

div.container {
  background-color: #000;
  margin-top: 20px;
}

div.center {
  width: 100px;
  height: 50px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
}

實(shí)現(xiàn)效果如下:


塊級(jí)元素水平居中

垂直居中

行內(nèi)元素垂直居中

如果包含塊是自然的被行內(nèi)元素的高度撐開的双泪,那么可以簡(jiǎn)單的設(shè)置包含塊padding-toppadding-bottom相等來實(shí)現(xiàn)垂直居中,其他情況可以采用如下方式實(shí)現(xiàn):

  1. 單行行內(nèi)元素垂直居中
    單行行內(nèi)元素垂直居中實(shí)現(xiàn)起來比較簡(jiǎn)單密似,只需將包含塊heightline-height屬性設(shè)置為相同值即可:
<div>
  <a href="#0">We're</a>
  <a href="#0">Centered</a>
  <a href="#0">Bits of</a>
  <a href="#0">Text</a>
</div>
body {
  background-color: #df6d0f;
  margin: 0;
}

div {
  border: 1px solid #fff;
  background-color: #000;
  height: 100px;
  line-height: 100px;
  margin-top: 20px;
}

a {
  text-decoration: none;
  background-color: #fff;
  color: #000;
}

實(shí)現(xiàn)效果如下:


單行行內(nèi)元素垂直居中
  1. 多行行內(nèi)元素垂直居中
    多行行內(nèi)元素垂直居中的實(shí)現(xiàn)方案可以利用table布局實(shí)現(xiàn)焙矛,該方法需要在將包含塊多包一層:
<div class="center-table">
  <p>
    <span>based on table layout.</span>
    <br />
    <span>based on table layout.</span>
  </p>
</div>
body {
  background-color: #df6d0f;
  margin: 0;
}

div {
  margin-top: 20px;
  display: table;
  width: 100%;
}

p {
  background-color: #000;
  height: 100px;
  display: table-cell;
  vertical-align: middle;
}

p span {
  background-color: #fff;
}

實(shí)現(xiàn)效果如下:


多行行內(nèi)元素垂直居中

塊級(jí)元素垂直居中

如果塊級(jí)元素的包含塊不作高度限制,可以簡(jiǎn)單的通過將padding-toppadding-bottom(或margin)設(shè)置為相等來實(shí)現(xiàn)塊級(jí)元素的垂直居中残腌;如果塊級(jí)元素包含塊高度已限制為確定值村斟,那么可以采用如下方式實(shí)現(xiàn),注意無論待垂直定位元素的高度是否已知這些方法均適用抛猫。

  1. 基于position實(shí)現(xiàn)
    將包含塊設(shè)置為position: relative蟆盹,待垂直居中的塊級(jí)元素設(shè)置為position: absolute,然后相對(duì)于包含塊來調(diào)整塊級(jí)元素垂直方向位置:
<div class="container">
  <div class="block-box">
     I'm a block-level element with an known or unknown height, centered vertically within my parent.
  </div>
</div>
body {
  background-color: #df6d0f;
  margin: 0;
}

div.container {
  height: 100px;
  background-color: #000;
  margin-top: 20px;
  position: relative;
}

div.block-box {
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

實(shí)現(xiàn)效果如下:


塊級(jí)元素垂直居中
  1. 基于flexbox實(shí)現(xiàn)
    縱向進(jìn)行flexbox布局即可:
<div class="container">
  <div class="block-box">
     I'm a block-level element with an known or unknown height, centered vertically within my parent.
  </div>
</div>
body {
  background-color: #df6d0f;
  margin: 0;
}

div.container {
  height: 100px;
  background-color: #000;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

div.block-box {
  background-color: #fff;
}

實(shí)現(xiàn)效果與基于position實(shí)現(xiàn)相同闺金。

塊級(jí)元素水平逾滥、垂直同時(shí)居中

如果要求塊級(jí)元素同時(shí)實(shí)現(xiàn)水平垂直居中败匹,可采用與前面垂直居中相同的思路來實(shí)現(xiàn)寨昙。當(dāng)然讥巡,我們需要限制下元素的寬度,否則水平居中就無從談起舔哪。注意無論元素的高度是否已知這些方法均適用欢顷。

  1. 基于position實(shí)現(xiàn)
<div class="container">
  <div class="block-box">
     I'm a block-level element with an known or unknown height, centered vertically within my parent.
  </div>
</div>
body {
  background-color: #df6d0f;
  margin: 0;
}

div.container {
  height: 100px;
  background-color: #000;
  margin-top: 20px;
  position: relative;
}

div.block-box {
  background-color: #fff;
  position: absolute;
  width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

實(shí)現(xiàn)效果如下:


塊級(jí)元素水平、垂直同時(shí)居中
  1. 基于flexbox實(shí)現(xiàn)
<div class="container">
  <div class="block-box">
     I'm a block-level element with an known or unknown height, centered vertically within my parent.
  </div>
</div>
body {
  background-color: #df6d0f;
  margin: 0;
}

div.container {
  height: 100px;
  background-color: #000;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.block-box {
  background-color: #fff;
  width: 300px;
}

實(shí)現(xiàn)效果與基于position實(shí)現(xiàn)相同捉蚤。

引用鏈接

本篇總結(jié)主要參考了如下文章:

  1. Centering in CSS: A Complete Guide
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末吱涉,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子外里,更是在濱河造成了極大的恐慌怎爵,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,042評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件盅蝗,死亡現(xiàn)場(chǎng)離奇詭異鳖链,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)墩莫,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門芙委,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人狂秦,你說我怎么就攤上這事灌侣。” “怎么了裂问?”我有些...
    開封第一講書人閱讀 156,674評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵侧啼,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我堪簿,道長(zhǎng)痊乾,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,340評(píng)論 1 283
  • 正文 為了忘掉前任椭更,我火速辦了婚禮哪审,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘虑瀑。我一直安慰自己湿滓,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,404評(píng)論 5 384
  • 文/花漫 我一把揭開白布舌狗。 她就那樣靜靜地躺著叽奥,像睡著了一般。 火紅的嫁衣襯著肌膚如雪把夸。 梳的紋絲不亂的頭發(fā)上而线,一...
    開封第一講書人閱讀 49,749評(píng)論 1 289
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼膀篮。 笑死嘹狞,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的誓竿。 我是一名探鬼主播磅网,決...
    沈念sama閱讀 38,902評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼筷屡!你這毒婦竟也來了涧偷?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,662評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤毙死,失蹤者是張志新(化名)和其女友劉穎燎潮,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體扼倘,經(jīng)...
    沈念sama閱讀 44,110評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡确封,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了再菊。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片爪喘。...
    茶點(diǎn)故事閱讀 38,577評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖纠拔,靈堂內(nèi)的尸體忽然破棺而出秉剑,到底是詐尸還是另有隱情,我是刑警寧澤稠诲,帶...
    沈念sama閱讀 34,258評(píng)論 4 328
  • 正文 年R本政府宣布侦鹏,位于F島的核電站,受9級(jí)特大地震影響吕粹,放射性物質(zhì)發(fā)生泄漏种柑。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,848評(píng)論 3 312
  • 文/蒙蒙 一匹耕、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧荠雕,春花似錦稳其、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至盖文,卻和暖如春嘱蛋,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評(píng)論 1 264
  • 我被黑心中介騙來泰國(guó)打工洒敏, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留龄恋,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,271評(píng)論 2 360
  • 正文 我出身青樓凶伙,卻偏偏與公主長(zhǎng)得像郭毕,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子函荣,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,452評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容