溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

CSS如何實(shí)現(xiàn)水平與垂直居中

發(fā)布時(shí)間:2022-04-28 15:40:23 來源:億速云 閱讀:102 作者:iii 欄目:大數(shù)據(jù)

今天小編給大家分享一下CSS如何實(shí)現(xiàn)水平與垂直居中的相關(guān)知識點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

首先我先創(chuàng)建一個(gè)公共的模板樣式

<template>
  <div class="two">
    <div class="parent">
      <div class="child">123</div>
    </div>
  </div>
</template>

<style lang="less" scoped>
.parent{
  margin: 0 auto;
  width: 300px;
  height: 300px;
  border: 1px solid red;
  box-sizing: border-box;
  .child {
    height: 100px;
    width: 100px;
    background: #2f8df0;
  }
}
</style>

然后具體用到的樣式單獨(dú)寫在方法里面,首先先介紹4個(gè)平時(shí)布局的技巧。

1.水平居中div里面的div,設(shè)置子元素的寬度。

.parent{
 width:300px;
    margin:0 auto;
}

注意:如果子元素設(shè)置了display:table-cell,那么margin:0 auto;將會失效。

2.設(shè)置文字垂直居中,設(shè)置包含文字div的高。

.child{
    text-align:center
    line-height:100px //知道子元素的高,設(shè)置和高一樣的高度
}

3.兩個(gè)或者多個(gè)塊級元素垂直居中對齊,父元素設(shè)置height和line-height相等。

 .parent{
     line-height: 300px; //知道父元素的高,設(shè)置和高一樣的高度
  }
   .child1{
    display: inline-block;
    vertical-align: middle;
    line-height: initial;  //initial 關(guān)鍵字用于設(shè)置 CSS 屬性為它的默認(rèn)值。
   }
   .child2{
    display: inline-block;
    vertical-align: middle;
    line-height: initial;  //initial 關(guān)鍵字用于設(shè)置 CSS 屬性為它的默認(rèn)值。
   }

4.讓一個(gè)元素充滿當(dāng)前整個(gè)容器,設(shè)置absolute

.parent{
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}

OK,介紹完畢,下面開始介紹CSS實(shí)現(xiàn)水平垂直居中的方式。

1.不需要設(shè)置子元素的寬高,需要設(shè)置父元素的高度。使用 absolute + transform (推薦)

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

// 備注一下,如果只需要上下居中那就只要保留top,只要左右居中的話就保留left,translate設(shè)置
   translateY(-50%)或者translateX(-50%)

2.不需要設(shè)置子元素的寬高,不需要設(shè)置父元素的寬高。 使用flex布局(建議移動端直接使用flex
pc端看需要兼容的情況。)

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

3.不需要設(shè)置子元素的寬高,需要設(shè)置父元素的高度。使用 lineheight。
注意:這種方法需要通過text-align在子元素中將文字顯示重置為想要的效果

.parent{
    line-height: 300px;  //設(shè)置和父元素的高度一樣
    text-align: center;
}
.child{
    display: inline-block;
    vertical-align: middle;
    line-height: initial; //initial 關(guān)鍵字用于設(shè)置 CSS 屬性為它的默認(rèn)值。
    text-align: left;  //將文字顯示重置為想要的效果
}

4.不需要設(shè)置子元素的寬高,需要設(shè)置父元素的高度。使用css-table (使用之后此元素的margin:0 auto會失效)

.parent{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.child{
  display: inline-block;
}

5.設(shè)置子元素的寬高,設(shè)置父元素的高度。 使用absolute + 負(fù)margin

.parent{
   position: relative 
}
.child{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -50px; //知道子元素的寬高
    margin-top: -50px;  //知道子元素的寬高
}

6.設(shè)置子元素的寬高,設(shè)置父元素的高度。使用 absolute + margin auto

.parent{
   position: relative 
}
.child{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

7.設(shè)置子元素的寬高,設(shè)置父元素的高度。 使用 absolute + calc(這種方法兼容性依賴calc的兼容性)

.parent{
   position: relative 
}
.child{
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
}

8.使用writing-mode(使用起來比較復(fù)雜,不推薦)

 //公共的樣式在最上面
 <div class="parent">
      <div class="box-child">
        <div class="child">123</div>
      </div>
    </div>
.parent{
     writing-mode: vertical-lr; //改變文字顯示的方向
    text-align: center;
}
.box-child{
    writing-mode: horizontal-tb;
    display: inline-block;
    text-align: center;
    width: 100%;
}
.child{
    text-align: left; //將文字顯示重置為想要的效果
    margin: 0 auto;
}

9.不需要設(shè)置子元素的寬高,不需要設(shè)置父元素的寬高。 使用grid布局(不建議使用,目前兼容性不是很好)

.parent{
    display: grid;
}
.child{
     align-self: center;
     justify-self: center;
}

10.使用table布局(純粹湊方法,這年頭,誰還用table布局呀,哈哈哈哈)

<table>
    <tbody>
        <tr>
            <td class="parent">
                <div class="child">123</div>
            </td>
        </tr>
    </tbody>
</table>
.parent{
    text-align: center;
}
.child{
    display: inline-block;
}

以上就是“CSS如何實(shí)現(xiàn)水平與垂直居中”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學(xué)習(xí)更多的知識,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI