CSS垂直居中和水平居中

Damonare發表於2019-02-16

前言

總括: CSS居中一直是一個比較敏感的話題,為了以後開發的方便,樓主覺得確實需要總結一下了,總的來說,居中問題分為垂直居中和水平居中,實際上水平居中是很簡單的,但垂直居中的方式和方法就千奇百怪了。

人生用物,各有天限;夏澇太多,必有秋旱。

正文

內聯元素居中方案

水平居中設定:

  1. 行內元素 設定 text-align:center;

  2. Flex佈局 設定display:flex;justify-content:center;(靈活運用)

垂直居中設定:

  1. 父元素高度確定的單行文字(內聯元素) 設定 height = line-height;

  2. 父元素高度確定的多行文字(內聯元素) a:插入 table (插入方法和水平居中一樣),然後設定 vertical-align:middle; b:先設定 display:table-cell 再設定 vertical-align:middle;

## 塊級元素居中方案

水平居中設定:

  1. 定寬塊狀元素 設定 左右 margin 值為 auto;

  2. 不定寬塊狀元素 a:在元素外加入 table 標籤(完整的,包括 table、tbody、tr、td),該元素寫在 td 內,然後設定 margin 的值為 auto; b:給該元素設定 display:inine 方法; c:父元素設定 position:relative 和 left:50%,子元素設定 position:relative 和 left:50%;

垂直居中設定:

  • 1.使用position:absolute(fixed),設定left、top、margin-left、margin-top的屬性;

    .box{
    position:absolute;/*或fixed*/
    top:50%;
    left:50%;
    margin-top:-100px;
    margin-left:-200px;
    }
    • 2.利用position:fixed(absolute)屬性,margin:auto這個必須不要忘記了;

.box{
    position: absolute;或fixed
    top:0;
    right:0;
    bottom:0;
    left:0;
    margin: auto;
}
  • 3.利用display:table-cell屬性使內容垂直居中,這個方法在多行文字居中的時候用的比較多;

HTML程式碼:

<div class="box">
    <span>多行文字,此處居中設定</span>
</div>

CSS程式碼:

.box{
    display:table-cell;
    vertical-align:middle;
    text-align:center;
    width:100px;
    height:120px;
    background:purple;
}
.box span{
    display: inline-block;
    vertical-align: middle;
}
  • 4.使用css3的新屬性transform:translate(x,y)屬性;

.box{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
}
  • 5.最高大上的一種,使用before,after偽元素;

HTML程式碼:

<div class=`box`>
    <div class=`content`>
        垂直居中
    </div>
</div>

CSS程式碼:

.box{
    position:fixed;
    display:block;
    background:rgba(0,0,0,.5);
}
.box:before{
    content:``;
    display:inline-block;
    vertical-align:middle;
    height:100%;
}
.box:after{
    content:``;
    display:inline-block;
    vertical-align:middle;
    height:100%;
}
.box .content{
    width:60px;
    height:60px;
    line-height:60px;
    color:red;
}
  • 6.Flex佈局;

.box{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    水平居中
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-pack:center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
     垂直居中
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-align:center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}

結語

博主暫時掌握了這些居中方法,讀者如果還有好方法或是覺得那個地方不對,歡迎評論,不吝感謝。

相關文章