我是靠谱客的博主 谦让白猫,最近开发中收集的这篇文章主要介绍面试必问之CSS水平垂直居中,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

水平居中:

① margin:0 auto;

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body{margin: 0;}
.outer{
width:600px;
height:600px;
background-color:#D0D0D0;
text-align:center;
}
.inner{
width:300px;
height:300px;
background-color:#5cb85c;
display:inline-block;
}
</style>
</head>
<body>
<div class="outer">
<div class="inner">
</div>
</div>
</body>
</html>

② text-align: center;

.outer{
width:600px;
height:600px;
background-color:#D0D0D0;
text-align:center;
}
.inner{
width:300px;
height:300px;
background-color:#5cb85c;
display:inline-block;
}

水平垂直居中:

① 父元素:display:flex; 弹性布局
子元素:align-self:center;设置单个子元素在纵轴上的排列

.outer{
width:600px;
height:600px;
background-color:#D0D0D0;
display:flex;
}
.inner{
margin:0 auto;//水平居中
width:300px;
height:300px;
background-color:#5cb85c;
align-self:center;//垂直居中
}

② display:flex;弹性布局
justify-content: center;设置元素在横轴上的排列
align-items: center;设置元素在纵轴上的排列

.outer{
width:600px;
height:600px;
background-color:#D0D0D0;
display:flex;
justify-content: center;//水平居中
align-items: center;垂直居中
}
.inner{
width:300px;
height:300px;
background-color:#5cb85c;
}

③ 绝对定位和transform

.outer{
width:600px;
height:600px;
background-color:#D0D0D0;
position:relative;
}
.inner{
width:300px;
height:300px;
background-color:#5cb85c;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);//移动
}

④ 绝对定位,并且margin值位auto 此方法不受元素宽高限制

.outer{
width:600px;
height:600px;
background-color:#D0D0D0;
position: relative;
}
.inner{
width:400px;
height:200px;
background-color:#5cb85c;
position: absolute;
margin: auto;
left: 0;
right: 0;
bottom: 0;
top:0;
}

⑤ table-cell属性将元素换成表格样式,再利用表格居中

.outer{
width:600px;
height:600px;
background-color:#D0D0D0;
display: table-cell;
vertical-align: middle;
}
.inner{
margin:0 auto;
width:300px;
height:300px;
background-color:#5cb85c;
}

最后

以上就是谦让白猫为你收集整理的面试必问之CSS水平垂直居中的全部内容,希望文章能够帮你解决面试必问之CSS水平垂直居中所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部