css 水平垂直居中的方法总结

在项目中经常会遇到设置元素水平垂直居中的需求。而且具体的场景也不同,所以将个人总结的方法做个汇总,希望对浏览者有用。
以下所举的例子都以一个html为准,这里规定好一些公用样式。

 

body {
    background-color: #efefef; 
}
main {
    background-color: #fff;
    padding: 10px;
    margin:10px 0px;
}
main div {
    background-color: #aaf;
}

  

水平居中

1 相对块级父元素,可将子级设置成行内或者行内块元素,父元素设置text-align属性

举例如下:

.parent1 {
    text-align:center;
}
.child1 {
    display:inline|inline-block;
}

2 若父子都为块级元素,则给子元素宽度值之后,将margin:auto

<main class="parent2">
    <div class="child2">我是孩子2,我要水平居中</div>
</main>
.child2 {
    width:60%;
    margin:auto;
}

3 如果是多个子元素水平居中,则有两种方法

3.1 将子级设置成行内或者行内块元素,父元素设置text-align属性
3.2 将父元素设置display:flex
<main class="parent4">
    <div class="child4">我是孩子4,我要水平居中</div>
    <div class="child4">我是孩子4,我要水平居中</div>
    <div class="child4">我是孩子4,我要水平居中</div>
</main>

.parent4 {
    display: flex;
    justify-content: center;
}
  .child4 {
    margin:10px;
}

垂直居中

1 除了设置固定的padding值使其看起来垂直居中之外,还可用line-height

将line-height和height的值设置为相同值,

<main class="parent5">
    <div class="child5">我是孩子5,我要垂直居中</div>
</main>
.child5 {
    height:50px;
    line-height: 50px;
}

2 如果是多行的,可以像table那样,按照table cell 模式显示,配合vertical-align

<main class="parent6">
    <div class="child6">我是孩子6,我要垂直居中</div>
    <div class="child6">我是孩子6,我要垂直居中</div>
    <div class="child6">我是孩子6,我要垂直居中</div>
</main>
.parent6 {
    display: table;
}
.child6 {
    display: table-cell;
    border:2px solid #000;
    vertical-align: middle;
}

3 通过绝对定位

<main class="parent7">
    <div class="child7">我是孩子7,我要垂直居中</div>
</main>
/*如果知道子元素宽高*/
.parent7 {
    position: relative;
    height: 100px;
}
.child7 {
    position: absolute;
    top:50%;
    height:60px;
    margin-top:-30px;
}
/*如果不知道子元素宽高*/
.parent7 {
    position: relative;
    height: 100px;
}
.child7 {
    position: absolute;
    top:50%;
    transform: translateY(-50%);
} 

4 使用flex

<main class="parent8">
    <div class="child8">我是孩子8,我要垂直居中</div>
</main>
.parent8 {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

水平和垂直都居中

1 使用绝对定位

<main class="parent9">
    <div class="child9">我是孩子9,我要水平垂直居中</div>
</main>
 /*如果不知道子元素宽高*/
.parent9 {
    position: relative;
    height: 150px;
}
.child9 {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
/*如果知道子元素宽高*/
.parent9 {
    position: relative;
    height: 150px;
}
.child9 {
    position: absolute;
    top:50%;
    left:50%;
    height:60px;
    width:100px;
    margin-left:-50px;
    margin-top:-30px;
}

2 使用flex

.parent10 {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.child10 {
    margin: auto;
}

  

转载其他人的。。。。仅供参考

补充

1、垂直对齐

如果你用CSS,则你会有困惑:我该怎么垂直对齐容器中的元素?现在,利用CSS3Transform,可以很优雅的解决这个困惑:

.verticalcenter{
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

使用这个技巧,从单行文本、段落到box,都会垂直对齐。目前浏览器对Transform的支持是需要关注的,
Chrome 4Opera 10Safari 3Firefox 3and Internet Explorer 9均支持该属性

转载于:https://www.cnblogs.com/TangYR168/p/6362731.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值