垂直水平居中方法小結

前言:
最近看到不少面試題目會問:請說出幾種使用css完成垂直水平居中的方法?正好看css基礎的時候看到一篇文章是講徹底居中的,這邊對於文章中的內容作個小結。css


1、使用absolute(Absolute Centering)

1.1 具體代碼以下:

.container {
    position: relative;
}

.absolute_center {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    margin: auto;
    padding: 20px;
    overflow: auto;
}
<div class="container">
    <div class="absolute_center">
        <ul>
            <li>
                該方法的核心思想是是使用絕對定位佈局,使當前元素脫離正常的流體特性,而使用absolute的流體特性
            </li>
        </ul>
    </div>
</div>

使用absolute徹底居中

1.2 該方法的核心思想是:

使用absolute進行定位佈局,脫離正常的塊狀元素流體特性,而經過absolute的流體特性完成垂直水平居中。

這裏有兩個基本知識點須要知道:html

1.流體特性:
塊狀水平元素,如div元素,在默認狀況下(非浮動、絕對定位等),水平方向會自動填滿外部的容器;若是有margin-left/margin-right, padding-left/padding-right, border-left-width/border-right-width等,實際內容區域會響應變窄;

2.absolute流體特性:
默認是不具備流體特性的,而是在特定條件下才具備,而這個條件就是"對立方向同時發生定位的時候",即left與right爲水平方向定位,top與bottom爲垂直方向定位,而當對立方向同時具備定位數值的時候,absolute的流體特性就發生了。

1.3 優缺點:

優:
1.兼容性好,absolute流體特性IE7就兼容了,可兼容全部現代瀏覽器;
2.沒有額外的標記html元素,樣式簡單;
3.內容的寬度以及高度寫法支持使用百分比以及min-/max-寫法;
4.對圖像文件也一樣支持;

缺:
1.必須定義內容的高度;
2.必須增長overflow屬性來阻止若是內容的文本高度超出外層容器時出現的溢出狀況;

2、負值外補侗法(negative margins)

這多是目前最經常使用的方法,在元素的高度以及寬度是固定數值的時候,經過設置該元素爲相對佈局脫離文檔流,並設置top: 50%; left: 50%;,使用margin-left以及margin-top使元素徹底居中。web

2.1 具體代碼以下:

.container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: aliceblue;
}

.is-Negative {
    position: absolute;
    width: 300px;
    height: 200px;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -170px;
    margin-top: -120px;
    background-color: cornsilk;
}
<div class="container">
    <div class="is-Negative">
    </div>
</div>

使用negative margins實現徹底居中

2.2 該方法的核心思想是:

使用相對佈局,並使用top以及left使內容置於容器中心部位,再使用margin來控制偏移量。

這裏有有個注意點:面試

當使用box-sizing:border-box屬性的時候,偏移量是不須要計算border以及padding的。

2.3 優缺點:

優:
1.兼容性好,包括IE6-IE7
2.沒有額外的標記html元素,代碼量少;

缺:
1.非響應式的,不能配合百分比以及min-/max-使用;
2.必須增長overflow屬性來阻止若是內容的文本高度超出外層容器時出現的溢出狀況;
3.當元素使用box-sizing:border-box和使用默認的content-box偏移量是不同的,須要從新計算;

3、使用Transforms

3.1 具體代碼以下:

.container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: aliceblue;
}

.is-Transformed { 
    width: 50%;
    margin: auto;
    position: absolute;
    top: 50%; 
    left: 50%;
    padding: 20px;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    background-color: darkseagreen;
}
<div class="container">
    <div class="is-Transformed">
        <ul>
            <li>
                該方法的核心思想是使用相對佈局,並使用top以及left使內容置於容器中心部位,再使用translate來控制偏移量
            </li>
        </ul>
    </div>
</div>

使用Transforms實現徹底居中

3.2 該方法的核心思想是:

使用相對佈局,並使用top以及left使內容置於容器中心部位,再使用transform來控制偏移量。

3.3 優缺點:

優:
1.內容寬度以及高度自適應,能夠不指定內容的寬度以及高度;
2.代碼量少

缺:
1.兼容性差了點,因爲transform不兼容IE8,因此只支持IE9及其以上的現代瀏覽器;
2.爲了兼容各類瀏覽器,須要些額外的css前綴;
3.若是元素有使用transform屬性,可能會影響到其餘的變換效果;
4.在有些時候會出現邊緣模糊的狀況,這是瀏覽器渲染的問題,尤爲是使用了transform-style: preserve-3d屬性的時候

4、使用Table-Cell

這多是最好的垂直居中的方案,但存在一個最大的問題,須要額外的html元素,要使用table-cell完成垂直居中效果須要3個元素來完成。瀏覽器

4.1 具體代碼以下:

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: aliceblue;
}

.container.is-Table { 
  display: table; 
}

.is-Table .Table-Cell {
  display: table-cell;
  vertical-align: middle;
}

.is-Table .Center-Block {
  width: 50%;
  margin: 0 auto;
  padding: 20px;
  background-color: deepskyblue;
}
<div class="container is-Table">
    <div class="Table-Cell">
        <div class="Center-Block">
            使用table-cell完成垂直水平居中
        </div>
    </div>
</div>

@import "./absolute_center4.png"{width="50%"}佈局

4.2 該方法的核心思想是:

使用表格來實現垂直居中,再使用margin: 0 auto;來實現水平居中。

具體操做步驟以下:
1.設置父元素爲塊級表格;
2.設置子元素爲表格單元格;
3.給子元素添加vertical-align:middle屬性,此單元格已實現垂直居中;
4.設置子元素中的內容的寬度,添加margin: 0 auto;屬性,使子元素水平居中。

4.3 優缺點:

優:
1.內容高度自適應;
2.若是子元素的內容溢出,會拉伸父元素的高度;
3.兼容性好,兼容到IE8;

缺:
1.完成一個垂直居中效果,須要3個html元素;

5、使用Inline-block

這也是一種經常使用的垂直水平居中的方法,但會存在一個問題:當內容的寬度大於容器寬度-0.25em的時候,會發生內容上移到頂部的方法,因此須要一些小的技巧來避免這樣的問題。flex

5.1 具體代碼以下:

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: aliceblue;
}

.container.is-Inline { 
  text-align: center;
  overflow: auto;
}

.container.is-Inline:after,
.is-Inline .Center-Block {
  display: inline-block;
  vertical-align: middle;
}

.container.is-Inline:after {
  content: '';
  height: 100%;
  margin-left: -0.25em; /* To offset spacing. May vary by font */
}

.is-Inline .Center-Block {
  background-color: greenyellow;
  padding: 20px;
  max-width: 99%; /* Prevents issues with long content causes the content block to be pushed to the top */
  /* max-width: calc(100% - 0.25em) /* Only for IE9+ */ 
}
<div class="container is-Inline">
    <div class="Center-Block">
        使用inline-block完成水平垂直居中
    </div>
</div>

使用Inline-block實現徹底居中

5.2 該方法的核心思想是:

和table有點相似,設置內容爲inline-block塊,設置vertical-align: middle;屬性使元素垂直方向居中,再父容器設置text-align:center;使子元素水平方向居中;

5.3 優缺點:

優:
1.內容高度自適應;
2.若是子元素的內容溢出,會拉伸父元素的高度;
3.兼容性好,兼容到IE7;

缺:
1.依賴margin-left:-0.25em來矯正水平方向居中的偏差;
2.內容的寬度必須小於容器的寬度減去0.25em。

6、使用Flexbox

彈性佈局是當前移動端比較流行的佈局方式,它能夠很優雅的完成垂直水平居中效果。flexbox

6.1 具體代碼以下:

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: aliceblue;
}

.container.is-Flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
      -moz-box-align: center;
      -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
      -moz-box-pack: center;
      -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.center_block {
  background-color: wheat;
  padding: 20px;
}
<div class="container is-Flexbox">
  <div class="center_block">
    使用flexbox完成水平垂直居中
  </div>
</div>

使用flex-box實現徹底居中

6.2 該方法的核心思想是:

使用彈性佈局,align-items: center;使元素在側軸方向居中(默認是垂直方向),justify-content: center;使元素在主軸方向居中(默認是水平方向);

6.3 優缺點:

優:
1.內容寬度、高度自適應,即使文本溢出也很優雅;
2.可使用不少彈性佈局的新特性;

缺:
1.兼容性比較差,目前只有IE10以上兼容;
2.須要寫額外的兼容性前綴;
3.各個瀏覽器的表現可能會有一些差別;
相關文章
相關標籤/搜索