关于css中水平或垂直居中的几种方式(超详细)

一:水平居中

(1) : margin:0 auto; (块级居中)

    <style>
      .box {
        width: 200px;
        height: 200px;
        background-color: pink;
      }
      .box1 {
        width: 100px;
        height: 100px;
        background-color: red;
        margin: 0 auto;
      }
    </style>


    <div class="box">
      <div class="box1"></div>
    </div>

效果图:


 

 (2) : text-align: center;(行内居中)

    <style>
      .box {
        width: 200px;
        height: 200px;
        background-color: pink;
        text-align: center;
      }
      span {
        background-color: orange;
      }
    </style>


    <div class="box">
      <span>我是span</span>
    </div>

效果图:


 

 (3) : position:absolute +left:50% +  transform:translateX(-50%)  

记的子绝父相哦

    <style>
      .box {
        position: relative;
        width: 200px;
        height: 200px;
        background-color: pink;
      }
      .box2 {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
        background-color: red;
      }
    </style>


    <div class="box">
      <div class="box2"></div>
    </div>

效果图:


 

 (4) : display:flex + justify-content: center

    <style>
      .box {
        display: flex;
        justify-content: center;
        width: 200px;
        height: 200px;
        background-color: pink;
      }
      .box2 {
        width: 100px;
        height: 100px;
        background-color: red;
      }
    </style>


    <div class="box">
      <div class="box2"></div>
    </div>

效果图: 


二:垂直居中 

(1) : line-height等于元素的高度

 

    <style>
      .box {
        width: 100px;
        height: 40px;
        background-color: pink;
      }
      span{
        line-height: 40px;
        background-color: orange;
      }
    </style>


    <div class="box">
      <span>我是span</span>
    </div>

效果图:


 (2) : position:absolute +top:50%+ transform:translateY(-50%)

    <style>
      .box {
        position: relative;
        width: 200px;
        height: 200px;
        background-color: pink;
      }
      .box1 {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100px;
        height: 100px;
        background-color: red;
      }
    </style>


    <div class="box">
      <div class="box1"></div>
    </div>

 效果图:


 (3) : display:flex + align-items: center

    <style>
      .box {
        display: flex;
        align-items: center;
        width: 200px;
        height: 200px;
        background-color: pink;
      }
      .box1 {
        width: 100px;
        height: 100px;
        background-color: red;
      }
    </style>


    <div class="box">
      <div class="box1"></div>
    </div>

 效果图:


 (4) : display:table + ( display:table-cell + vertical-align: middle; )

    <style>
      .box {
        display: table;
        width: 200px;
        height: 200px;
        background-color: pink;
      }
      span {
        display: table-cell;
        vertical-align: middle;
      }
    </style>


    <div class="box">
      <span>我是span,我想要垂直居中</span>
    </div>

效果图:


 按照自己的需求来使用,结合使用可实现水平垂直居中,还有其他方法欢迎来补充

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值