使用CSS完成元素居中的七種方法

zcfy發表於2016-10-03

在網頁上使 HTML 元素居中看似一件很簡單的事情. 至少在某些情況下是這樣的,但是複雜的佈局往往使一些解決方案不能很好的發揮作用。

在網頁佈局中元素水平居中比元素垂直居中要簡單不少,同時實現水平居中和垂直居中往往是最難的。現在是響應式設計的時代,我們很難確切的知道元素的準確高度和寬度,所以一些方案不大適用。據我所知, 在CSS中至少有六種實現居中的方法。我將使用下面的HTML結構從簡單到複雜開始講解:

<div class="center">
  <img src="jimmy-choo-shoe.jpg" alt>
</div>

鞋子圖片會改變,但是他們都會保持500pxX500px的大小。 HSL colors 用於使背景顏色保持一致。

使用text-align水平居中

Photograph of a classic Chuck Converse shoe

有時顯而易見的方案是最佳的選擇:

div.center {
  text-align: center;
  background: hsl(0, 100%, 97%);
}
div.center img {
  width: 33%; height: auto;
}

這種方案沒有使圖片垂直居中:你需要給<div> 新增 padding 或者給內容新增 margin-top 和 margin-bottom使容器與內容之間有一定的距離。

使用 margin: auto 居中

Photograph of a white classic Nike sneaker

這種方式實現水平居中和上面使用text-align的方法有相同侷限性。

div.center {
  background: hsl(60, 100%, 97%);
}
div.center img {
  display: block;
  width: 33%;
  height: auto;
  margin: 0 auto;
}

注意: 必須使用display: block使 margin: 0 auto對img元素生效。

使用table-cell居中

Photograph of black Oxford calfskin shoe designed by Vivienne Westwood

使用 display: table-cell, 而不是使用table標籤; 可以實現水平居中和垂直居中,但是這種方法需要新增額外的元素作為外部容器。

<div class="center-aligned">
    <div class="center-core">
        <img src="jimmy-choo-shoe.jpg">
    </div>
</div>

CSS:

.center-aligned {
    display: table;
    background: hsl(120, 100%, 97%);
    width: 100%;
}
.center-core {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.center-core img {
    width: 33%;
    height: auto;
}

注意:為了使div 不折疊必須加上 width: 100%,外部容器元素也需要加上一定高度使得內容垂直居中。給html和body設定高度後,也可以使元素在body垂直居中。此方法在IE8+瀏覽器上生效。

使用absolute定位居中

Photograph of an Under Armour Micro G Toxic Six shoe

這種 方案 有非常好的跨瀏覽器支援。有一個缺點就是必須顯式宣告外部容器元素的height:


.absolute-aligned {
    position: relative;
    min-height: 500px;
    background: hsl(200, 100%, 97%);
}
.absolute-aligned img {
    width: 50%;
    min-width: 200px;
    height: auto;
    overflow: auto;
    margin: auto;
    position: absolute;
    top: 0; left: 0;
    bottom: 0; right: 0;
}

Stephen在他的 部落格 中演示了這種方案的幾種變化。

使用translate居中

Photograph of a Jimmy Choo shoe

Chris Coiyer 提出了一個使用 CSS transforms 的新方案。 同樣支援水平居中和垂直居中:


.center {
    background: hsl(180, 100%, 97%);
    position: relative;
    min-height: 500px;
}
.center img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 30%; height: auto;
}

但是有以下幾種缺點:

  • CSS transform 在部分就瀏覽器上需要使用 字首
  • 不支援 IE9 以下的瀏覽器。
  • 外部容器需要設定height (或者用其他方式設定),因為不能獲取 絕對定位 的內容的高度。
  • 如果內容包含文字,現在的瀏覽器合成技術會使文字模糊不清。

使用Flexbox居中

Photograph of a Manolo Blahnik shoe

當新舊語法差異和瀏覽器字首消失時,這種方法會成為主流的居中方案。

.center { 
    background: hsl(240, 100%, 97%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.center img { 
    width: 30%; height: auto;
}

在很多方面 flexbox 是一種簡單的方案, 但是它有新舊兩種語法以及早期版本的IE缺乏支援 (儘管可以使用 display: table-cell作為降級方案)。

現在規範已經最終確定,現代瀏覽器也大都支援,我寫了一篇詳細的教程 教程

使用calc居中

Photograph of a Christian Louboutin shoe

在某些情況下比flexbox更全面:

.center {
    background: hsl(300, 100%, 97%);
    min-height: 600px;
    position: relative;
}
.center img {
    width: 40%;
    height: auto;
    position: absolute;
    top: calc(50% - 20%);
    left: calc(50% - 20%);
}

很簡單,calc 允許你基於當前的頁面佈局計算尺寸。在上面的簡單計算中, 50% 是容器元素的中心點,但是如果只設定50%會使圖片的左上角對齊div的中心位置。 我們需要把圖片向左和向上各移動圖片寬高的一半。計算公式為:

top: calc(50% - (40% / 2));
left: calc(50% - (40% / 2));

在現在的瀏覽其中你會發現,這種方法更適用於當內容的寬高為固定尺寸:

.center img {
    width: 500px; height: 500px;
    position: absolute;
    top: calc(50% - (300px / 2));
    left: calc(50% - (300px – 2)); 
}

我在 這篇文章 中詳細講解了calc。

這種方案和flex一樣有許多相同的缺點: 雖然在現代瀏覽器中有良好的支援,但是在較早的版本中仍然需要瀏覽器字首,並且不支援IE8。

.center img {
    width: 40%; height: auto;
    position: absolute;
    top: calc(50% - 20%);
    left: calc(50% - 20%);
}

當然還有 其他更多的方案。理解這六種方案之後,web開發人員在面對元素居中的時候會有更多的選擇。

相關文章