让代码更简单

CSS水平垂直居中方法总结

重要:本文最后更新于2018-06-22 10:59:49,某些文章具有时效性,若有错误或已失效,请在下方留言或联系代码狗

说起居中,大家一定会用margin: 0 auto;有时候明明设置了,却不居中,要么是忘了设置宽度,要么是忘了将行内元素设置为块元素。要实现如下图所示水平垂直居中样式,代码狗搜集了下面几种方案供大家参考学习。

CSS水平垂直居中方法总结

CSS水平垂直居中方法总结

方案1:position 元素已知宽度
父元素设置为:position: relative;
子元素设置为:position: absolute;
距上50%,据左50%,然后减去元素自身宽度的距离就可以实现

复制
<div class="box">
<div class="content">
</div>
</div>
.box {
background-color: #FF8C00;
width: 300px;
height: 300px;
position: relative;
}
.content {
background-color: #F00;
width: 100px;
height: 100px;
position: absolute;
left: 50%;
top: 50%;
margin: -50px 0 0 -50px;
}

方案2:position transform 元素未知宽度
如果元素未知宽度,只需将上面例子中的margin: -50px 0 0 -50px;替换为:transform: translate(-50%,-50%);

复制
<div class="box">
<div class="content">
</div>
</div>
.box {
background-color: #FF8C00;
width: 300px;
height: 300px;
position: relative;
}
.content {
background-color: #F00;
width: 100px;
height: 100px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}

方案3:flex布局

复制
<div class="box">
<div class="content">
</div>
</div>
.box {
background-color: #FF8C00;
width: 300px;
height: 300px;
display: flex;//flex布局
justify-content: center;//使子项目水平居中
align-items: center;//使子项目垂直居中
}
.content {
background-color: #F00;
width: 100px;
height: 100px;
}

方案4:table-cell布局

table-cell相当与表格的td,td为行内元素,无法设置宽和高,所以嵌套一层,嵌套一层必须设置display: inline-block;td的背景覆盖了橘黄色,不推荐使用

复制
<div class="box">
<div class="content">
<div class="inner">
</div>
</div>
</div>
.box {
background-color: #FF8C00;//橘黄色
width: 300px;
height: 300px;
display: table;
}
.content {
background-color: #F00;//红色
display: table-cell;
vertical-align: middle;//使子元素垂直居中
text-align: center;//使子元素水平居中
}
.inner {
background-color: #000;//黑色
display: inline-block;
width: 20%;
height: 20%;
}

表格布局效果一样,就不贴图片了,以上资料来自网络,仅供参考,不保证正确。

感觉很棒!可以赞赏支持我哟~

0 打赏

评论 (2)

登录后评论
这个办法好,下次可以尝试一下,是如果不出现网站问题都可以这样吗
有兴趣可以试试,请先做好备份。
QQ咨询 邮件咨询 狗哥推荐