CSS邊用邊學(xué)(五):所有CSS居中方法金蜀,了解一下荤懂?

目錄

  1. 水平居中
    • 內(nèi)聯(lián)元素水平居中
    • 塊級元素水平居中
    • 多個(gè)塊級元素的水平居中
  2. 垂直居中
    • 內(nèi)聯(lián)元素垂直居中
      • 單行內(nèi)聯(lián)元素
      • 多行內(nèi)聯(lián)元素
    • 塊級元素垂直居中
      • 知道元素的height
      • 不知道元素的height
      • 子元素高度無所謂
      • 能用Flex-box
  3. 水平且垂直居中
    • 元素有固定寬高
    • 元素沒有固定寬高
    • 能用Flex-box
    • 能用Grid


水平居中

(1)內(nèi)聯(lián)元素水平居中

.center-children {
  text-align: center;
}

(2)塊級元素水平居中

.center-me {
  margin: 0 auto;
}

(3)多個(gè)塊級元素的水平居中

多元素水平排列

inline-block 法:

.father {
  text-align: center;
}
.father .center-children {
  display: inline-block;
}

flex 法:

.father {
  display: flex;
  justify-content: center;
}

多元素縱向排列

main {
  margin: 20px 0;
}

main div {
  margin: 0 auto;
}
main div:nth-child(1) {
  width: 200px;
}
main div:nth-child(2) {
  width: 400px;
}
main div:nth-child(3) {
  width: 125px;
}


垂直居中

(1)內(nèi)聯(lián)元素垂直居中

① 單行內(nèi)聯(lián)元素

padding 法:

.link {
  padding-top: 30px;
  padding-bottom: 30px;
}

line-height 法:

.center-text-trick {
  height: 100px;
  line-height: 100px;
  white-space: nowrap;
}

② 多行內(nèi)聯(lián)元素

table 法:

<table>
  <tr>
    <td>
      I'm vertically centered multiple lines of text in a real table cell.
    </td>
  </tr>
</table>
table {
  width: 240px;
  height: 250px;
}

table td {
  padding: 20px;
  /* default is vertical-align: middle; */
}

display: table; 法:

<div class="center-table">
  <p>I'm vertically centered multiple lines of text in a CSS-created table layout.</p>
</div>
.center-table {
  display: table;
  height: 250px; 
  width: 240px;
}
.center-table p {
  display: table-cell;
  margin: 0;
  padding: 20px;
  vertical-align: middle;
}

flex 法:

<div class="flex-center">
  <p>I'm vertically centered multiple lines of text in a flexbox container.</p>
</div>
.flex-center {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  resize: vertical;    /* 允許用戶在垂直方向上調(diào)整元素的大小 */
  overflow: auto;
}

偽元素法:(在不確定父類高度時(shí)使用)

.ghost-center {
  position: relative;
}
.ghost-center::before {
  content: " ";
  display: inline-block;
  height: 100%;
  width: 1%;
  vertical-align: middle;
}
.ghost-center p {
  display: inline-block;
  vertical-align: middle;
}

(2)塊級元素垂直居中

① 知道元素的height

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  height: 100px;
  margin-top: -50px; /* account for padding and border if not using box-sizing: border-box; */
}

② 不知道元素的height

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

③ 子元素高度無所謂

main {
  height: 300px;
  width: 300px;
  position: relative;
  display: table;
}
main div {
  display: table-cell;
  vertical-align: middle;
}

④ 能用Flex-box

.parent {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


水平且垂直居中

(1)元素有固定寬高

.parent {
  position: relative;
}

.child {
  width: 300px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -150px;
}

(2)元素沒有固定寬高

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

(3)能用Flex-box

.parent {
  display: flex;
  justify-content: center;
  align-items: center;
}

(4)能用Grid

body, html {
  height: 100%;
  display: grid;
}
span { /* thing to center */
  margin: auto;
}


參考:https://css-tricks.com/centering-css-complete-guide/

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末珠移,一起剝皮案震驚了整個(gè)濱河市弓乙,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌钧惧,老刑警劉巖暇韧,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異浓瞪,居然都是意外死亡懈玻,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進(jìn)店門乾颁,熙熙樓的掌柜王于貴愁眉苦臉地迎上來涂乌,“玉大人艺栈,你說我怎么就攤上這事÷钐龋” “怎么了眼滤?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長历涝。 經(jīng)常有香客問我诅需,道長,這世上最難降的妖魔是什么荧库? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任堰塌,我火速辦了婚禮,結(jié)果婚禮上分衫,老公的妹妹穿的比我還像新娘场刑。我一直安慰自己,他們只是感情好蚪战,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布牵现。 她就那樣靜靜地躺著,像睡著了一般邀桑。 火紅的嫁衣襯著肌膚如雪瞎疼。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天壁畸,我揣著相機(jī)與錄音贼急,去河邊找鬼。 笑死捏萍,一個(gè)胖子當(dāng)著我的面吹牛太抓,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播令杈,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼走敌,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了逗噩?” 一聲冷哼從身側(cè)響起悔常,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎给赞,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體矫户,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡片迅,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了皆辽。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片柑蛇。...
    茶點(diǎn)故事閱讀 38,137評論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡芥挣,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出耻台,到底是詐尸還是另有隱情空免,我是刑警寧澤,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布盆耽,位于F島的核電站蹋砚,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏摄杂。R本人自食惡果不足惜坝咐,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望析恢。 院中可真熱鬧墨坚,春花似錦、人聲如沸映挂。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽柑船。三九已至帽撑,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間椎组,已是汗流浹背油狂。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留寸癌,地道東北人专筷。 一個(gè)月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像蒸苇,于是被迫代替她去往敵國和親磷蛹。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評論 2 345