前端高频面试题-元素的垂直居中方法

我目前想到的有以下几种,经过实践认证过:

1、子元素设置margin:auto

<div class="father">
      <div class="child"></div>
</div>

.father {
  width: 400px;
  height: 400px;
  border: 1px solid black;
}
.child {
  margin: auto;
  width: 60px;
  height: 60px;
  background-color: red;
}

2、父元素设置flex布局,主轴(justify-content)和次轴(align-items)都垂直居中

<div class="father">
      <div class="child"></div>
</div>

.father {
  display: flex; 
  width: 400px;
  height: 400px;
  border: 1px solid black;
  justify-content: center;
  align-items: center;  
}
.child {
  width: 60px;
  height: 60px;
  background-color: red;
}

3、父元素设置相对定位,子元素设置绝对定位,子元素的left和top设置为50%(相对于父元素),再设置margin-top/left为负数子元素的高宽。

<div class="father">
      <div class="child"></div>
</div>

.father {
  width: 400px;
  height: 400px;
  border: 1px solid black;
  position: relative;
}
.child {
  width: 60px;
  height: 60px;
  background-color: red;
  position:  absolute;
  left: 50%;
  top: 50%;
  margin-left:-30px;
  margin-top:-30px; 
  /* 或者上面四行用用下面的calc计算 */
  /* left: calc(50% - 30px);
  top: calc(50% - 30px); */
  /* 或者margin-left和margin-top的2行用变换translate或者transform来计算 */
  /* translate: -50% -50%; */
  /* transform: translate(-50%,-50%); */
}

4、父元素设置table-cell布局,text-align和vertical-align为center和middle,子元素设置为inline-block布局。

<div class="father">
      <div class="child"></div>
</div>

.father {
  width: 400px;
  height: 400px;
  border: 1px solid black;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.child {
  width: 60px;
  height: 60px;
  background-color: red;
  display: inline-block; 
}

  • 4
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值