CSS 水平垂直居中的7种方法 - 附示例

CSS的水平垂直居中在日常开发中是用得是非常多的,几乎无处不在的存在,因此在此举例了七种方法

目录

一、单行

 1、line-height + text-align

        HTML

        CSS

        效果

二、多行

1、flex

        HTML

        CSS

        效果

2、flex + column

        HTML

        CSS

        效果

3、grid

        HTMl

        CSS

        效果

4、父相子绝 + transform

        HTML

        CSS

        效果

5、父相子绝 + margin:auto

        HTML

        CSS

        效果

6、table-cell

        HTML

        CSS

        效果


一、单行

 1、line-height + text-align

        HTML
<div class="box">line-height + text-align</div>
        CSS
.box {
  width: 400px;
  height: 200px; 
  line-height: 200px; /* 垂直居中 */
  text-align: center; /* 水平居中 */
  color: #ffffff;
  background-color: #FF6666;
}
        效果

二、多行

1、flex

        HTML
<div class="parent">
  <div class="child">flex</div>
</div>
        CSS
.parent {
  width: 400px;
  height: 200px; 
  color: #ffffff;
  background-color: #FF6666;
  display: flex;
  align-items: center;  /* 垂直居中 */
  justify-content: center; /* 水平居中 */
}

.child {
  width: 200px;
  height: 100px; 
  line-height: 100px;
  text-align: center;
  background-color: #0066FF;
}
        效果

2、flex + column

        HTML
<div class="parent">
  <div class="child">flex column</div>
</div> 
        CSS
.parent {
  width: 400px;
  height: 200px; 
  color: #ffffff;
  background-color: #FF6666;
  display: flex;
  flex-direction: column; /* 垂直方向,默认是水平方向 row */
  align-items: center;  /* 水平居中 */
  justify-content: center; /* 垂直居中 */
}

.child {
  width: 200px;
  height: 100px; 
  line-height: 100px;
  text-align: center;
  background-color: #0066FF;
}
        效果

3、grid

        HTMl
<div class="parent">
  <div class="child">grid</div>
</div> 
        CSS
.parent {
  width: 400px;
  height: 200px; 
  color: #ffffff;
  background-color: #FF6666;
  display: grid;
  place-items: center; /* align-items: center 和 justify-items: center 的简写 */
}
  
.child {
  width: 200px;
  height: 100px; 
  line-height: 100px;
  text-align: center;
  background-color: #0066FF;
}
        效果

4、父相子绝 + transform

        HTML
<div class="parent">
  <div class="child">父相子绝 + transform</div>
</div>
        CSS
.parent {
  width: 400px;
  height: 200px; 
  color: #ffffff;
  background-color: #FF6666;
  position: relative;
}
  
.child {
  width: 200px;
  height: 100px; 
  line-height: 100px;
  text-align: center;
  background-color: #0066FF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
        效果

5、父相子绝 + margin:auto

        HTML
<div class="parent">
  <div class="child">父相子绝 + margin:auto</div>
</div>
        CSS
.parent {
  width: 400px;
  height: 200px; 
  color: #ffffff;
  background-color: #FF6666;
  position: relative;
}
 
 .child {
  width: 200px;
  height: 100px; 
  line-height: 100px;
  text-align: center;
  background-color: #0066FF;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
        效果

6、table-cell

        HTML
<div class="parent">
  <div class="child">table-cell</div>
</div>
        CSS
.parent {
  width: 400px;
  height: 200px;
  background-color: #FF6666;
  display: table-cell;
  vertical-align: middle;
}

.child {
  width: 200px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: #0066FF;
  margin: auto;
}
        效果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值