1. 程式人生 > >CSS元素居中多種寫法

CSS元素居中多種寫法

一、水平居中

1.行內元素水平居中 利用 text-align: center 可以實現塊級元素內部的行內元素水平居中。此方法對inline、inline-block、inline-table和inline-flex等行內元素水平居中有效。

如果塊級元素內部包著另外一個塊級元素,我們可以將內部塊級元素轉變為行內塊元素,再通過設定元素居中以達到水平居中。

<div class="parent">
  <div class="child">Demo</div>
</div>
<style>
  .parent{
    text-align:center;  
  }
  .child {
    display: inline-block;
  }
</style>

2.塊級元素的水平居中 這種情形可以有多種實現方式:

①將該塊級元素左右外邊距margin-left及margin-right設定為auto值,注意外部元素需要同為塊級元素

.child{
    width: 100px;          
    margin:0 auto;
}

②使用table+margin 將子元素設定為塊級表格,後設置水平居中

display:table在表現上類似block元素,但是寬度為內容寬。

<div class="parent">
  <div class="child">Demo</div>
</div>
<style>
  .child {
    display: table;
    margin: 0 auto;
  }
</style>

③使用absolute+transform 父元素設定為相對定位,子元素設定為絕對定位,向右移動子元素,移動距離為父容器寬度的一半,然後向左移動子元素寬度的一半達到水平居中。

<div class="parent">
  <div class="child">Demo</div>
</div>
<style>
  .child {
    position:absolute;
    left:50%;
    transform:translateX(-50%);
  }
  .parent {
    position:relative;
  }
</style>

Eg: transform屬於css3內容,部分瀏覽器相容性存在一定問題,可能需要新增字首。

④使用flex+justify-content 通過CSS3中flex中的justify-content屬性來使元素達到水平居中。

<div class="parent">
  <div class="child">Demo</div>
</div>
<style>
  .parent {
    display: flex;
    justify-content:center;
  }
</style>

⑤使用flex+margin 通過flex將父容器設定為為Flex佈局,再設定子元素居中。

<div class="parent">
  <div class="child">Demo</div>
</div>
<style>
  .parent {
    display: flex;
  }
  .child {
    margin:0 auto;
  }
</style>

3.多塊級元素水平居中

①利用flex佈局 利用彈性佈局(flex),實現水平居中,其中justify-content 用於設定彈性盒子元素在主軸(預設橫軸)方向上的對齊方式,本例中設定子元素水平居中顯示。

 #container {
    display: flex;
    justify-content: center;
}

②利用inline-block 將要水平排列的塊狀元素設為display:inline-block,然後在父級元素上設定text-align:center,達到與上面的行內元素的水平居中一樣的效果。

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

4.浮動元素水平居中 對於定寬的浮動元素,通過子元素設定relative + 負margin 對於不定寬的浮動元素,父子容器都用相對定位 通用方法(不管是定寬還是不定寬):flex佈局 ①定寬的非浮動元素 通過子元素設定relative + 負margin,原理見下圖: 在這裡插入圖片描述

注意:樣式設定在浮動元素本身

.child {
   position:relative;
   left:50%;
   margin-left:-250px;
}
<div class="parent">
  <span class="child" style="float: left;width: 500px;">我是要居中的浮動元素</span>
</div>

②不定寬的浮動元素 通過父子容器都相對定位,偏移位移見下圖: 在這裡插入圖片描述

Eg: 謹記清除浮動,給外部元素加上float。這裡的父元素就是外部元素

<div class="box">
    <p>我是浮動的</p>
    <p>我也是居中的</p>
</div>
.box{
    float:left;
    position:relative;
    left:50%;
}
p{
    float:left;
    position:relative;
    right:50%;
}

③通用辦法flex佈局(不管是定寬還是不定寬) 利用彈性佈局(flex)的justify-content屬性,實現水平居中。

.parent {
    display:flex;
    justify-content:center;
}
.chlid{
    float: left;
    width: 200px;//有無寬度不影響居中
}
<div class="parent">
  <span class="chlid">我是要居中的浮動元素</span>
</div>

5.絕對定位元素水平居中 這種方式非常獨特,通過子元素絕對定位,外加margin: 0 auto來實現。

<div class="parent">
    <div class="child">讓絕對定位的元素水平居中對齊。</div>
</div>
  .parent{
        position:relative;
    }
   .child{
         position: absolute; /*絕對定位*/
         width: 200px;
         height:100px;
         background: yellow;
         margin: 0 auto; /*水平居中*/
         left: 0; /*此處不能省略,且為0*/
         right: 0;/*此處不能省略,且為0*/
    }

二、垂直居中

1.單行內聯元素垂直居中,關鍵通過line-height屬性與height等值實現

<div id="box">
     <span>單行內聯元素垂直居中。</span>。
</div>
<style>
 #box {
    height: 120px;
    line-height: 120px;
    border: 2px dashed #f69c55;
    }
</style>

2.多行內聯元素垂直居中 ①利用flex佈局(flex) 利用flex佈局實現垂直居中,其中flex-direction: column定義主軸方向為縱向。這種方式在較老的瀏覽器存在相容性問題。

<div class="parent">
    <p>Dance like nobody is watching, code like everybody is.    
    Dance like nobody is watching, code like everybody is.    
    Dance like nobody is watching, code like everybody is.</p>
</div>
<style>
    .parent { 
        height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: 2px dashed #f69c55;
    }
</style>

②利用表佈局(table) 利用表佈局的vertical-align: middle可以實現子元素的垂直居中

<div class="parent">
    <p class="child">The more technology you learn, the more you realize how little you know.
    The more technology you learn, the more you realize how little you know.
    The more technology you learn, the more you realize how little you know.</p>
</div>
 <style>
    .parent {
        display: table;
        height: 140px;
        border: 2px dashed #f69c55;
    }
    .child {
        display: table-cell;
        vertical-align: middle;
    }
</style>

3 塊級元素垂直居中 ①使用absolute+負margin(已知高度寬度) 通過絕對定位元素距離頂部50%,並設定margin-top向上偏移元素高度的一半,就可以實現了。

<div class="parent">
    <div class="child">固定高度的塊級元素垂直居中。</div>
</div>
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
height: 100px;
margin-top: -50px;
}

②使用absolute+transform 當垂直居中的元素的高度和寬度未知時,可以藉助CSS3中的transform屬性向Y軸反向偏移50%的方法實現垂直居中。但是部分瀏覽器存在相容性的問題。

<div class="parent">
    <div class="child">未知高度的塊級元素垂直居中。</div>
</div>
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
transform: translateY(-50%);
}

③使用flex+align-items 通過設定flex佈局中的屬性align-items,使子元素垂直居中。

<div class="parent">
    <div class="child">未知高度的塊級元素垂直居中。</div>
</div>
.parent {
    display:flex;
    align-items:center;
}

④使用table-cell+vertical-align 通過將父元素轉化為一個表格單元格顯示(類似 和 ),再通過設定 vertical-align屬性,使表格單元格內容垂直居中。

<div class="parent">
  <div class="child">Demo</div>
</div>
<style>
  .parent {
    display: table-cell;
    vertical-align: middle;
  }
</style>

三、水平垂直居中 這種情形也是有多種實現方式:

方法1:絕對定位與負邊距實現(已知高度寬度) 這種方式需要知道被垂直居中元素的高和寬,才能計算出margin值,相容所有瀏覽器。

/

/ css部分
 #container {
      position: relative;
    }
 #center {
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -50px 0 0 -50px;
    }
// html部分(這部分不做變化,下面例子直接共用)
<body>
  <div id='container'>
    <div id='center' style="width: 100px;height: 100px;background-color: #666">center</div>
  </div>
</body>

方法2:絕對定位與margin:auto(已知高度寬度) 這種方式無需知道被垂直居中元素的高和寬,但不能相容低版本的IE瀏覽器。

#container {
      position: relative;
      height:100px;//必須有個高度
    }
 #center {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;//注意此處的寫法
    }

方法3:絕對定位+CSS3(未知元素的高寬) 利用Css3的transform,可以輕鬆的在未知元素的高寬的情況下實現元素的垂直居中。 CSS3的transform固然好用,但在專案的實際運用中必須考慮相容問題,大量的hack程式碼可能會導致得不償失。

#container {
      position: relative;
    }
  #center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

方法4:flex佈局 利用flex佈局,其中justify-content 用於設定或檢索彈性盒子元素在主軸(橫軸)方向上的對齊方式;而align-items屬性定義flex子項在flex容器的當前行的側軸(縱軸)方向上的對齊方式。不能相容低版本的IE瀏覽器。

#container {//直接在父容器設定即可
      height: 100vh;//必須有高度
      display: flex;
      justify-content: center;
      align-items: center;
    }

方法5:flex/grid與margin:auto(最簡單寫法) 容器元素設為 flex 佈局或是grid佈局,子元素只要寫 margin: auto 即可,不能相容低版本的IE瀏覽器。

#container {
      height: 100vh;//必須有高度
      display: grid;
    }
  #center {
      margin: auto;
    }

藉此,作者想說一下自己使用的感受。除浮動定位之外,常規的水平垂直其實可以單純的通過padding屬性進行修正。