如何将一个div水平垂直居中

方法一:
    div绝对定位水平垂直居中【margin: auto实现绝对定位元素的居中】,兼容性:IE7及之前版本不支持

div{
    width: 200px;
    height: 200px;
    background: green;
    position:absolute;
    left:0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;

}

方法二:div绝对定位水平垂直居中【margin负间距】

div{
    width:200px;
    height: 200px;
    background:green;
    position: absolute;
    left:50%;
    top:50%;
    margin-left:-100px;
    margin-top:-100px;

}

方法三:div绝对定位水平垂直居中【Transform变形】,兼容性:IE8不支持

div{
        width: 200px;
        height: 200px;
        background: green;
        position:absolute;
        left:50%;    /* 定位父级的50% */
        top:50%;
        transform: translate(-50%,-50%); /*自己的50% */

}

方法四:CSS不定宽高水平垂直居中

.box{
        height:600px;
        display:flex;
        justify-content:center;/*水平居中*/
        align-items:center;/*垂直居中*/

        /* 只要三句话就可以实现不定宽高水平垂直居中。 */
}
.box>div{
        background: green;
        width: 200px;
        height: 200px;
}

方法五:将父级设置为table-cell元素,可以使用text-aligin:center和vertical-align:middle实现水平垂直居中,比较完美的方法是利用三层结构模拟父子结构

.tableCell{
  width: 100px;
  height: 100px;
  display: table;
}
.tableCell .ok{
  display: table-cell;
  text-align: center;
  vertical-align: middle;

  background-color: yellow;
}
.tableCell .innerBox{
  display: inline-block;
  background-color: green;
}
<div class="outerBox tableCell">
  <div class="ok">
          <div class="innerBox">tableCell</div>
  </div>
<div>

方法六:对盒子实现绝对定位,利用calc计算位置

.calc{
        position: relative;
        width: 500px;
        height: 120px;
        background-color: yellow;
}
.calc .innerBox{
        width: 200px;
        height: 50px;
        position: absolute;
        left:-webkit-calc((500px - 200px)/2);
        top:-webkit-calc((120px - 50px)/2);
        left:-moz-calc((500px - 200px)/2);
        top:-moz-calc((120px - 50px)/2);
        left:calc((500px - 200px)/2);
        top:calc((120px - 50px)/2);

        background-color: green;
}
<div class="outerBox calc">
  <div class="innerBox"></div>
<div>
  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

讲文明的喜羊羊拒绝pua

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值