Flex 垂直、水平居中

191 篇文章 0 订阅
先上效果图

html

<div class="center-flex">
  <p>lesson 1. </p>
  <p>(每行都水平居中)</p>
  <p>1、Be honest rather clever.</p>
  <p>2、Believe not all that you see nor half what you hear.</p>
</div>

<div class="center-flex">
  <div id="box">
    <p>lesson 1. </p>
    <p>(外框居中, 框内不受影响)</p>    
    <p>1、Be honest rather clever.</p>
    <p>2、Believe not all that you see nor half what you hear.</p>
  </div>
</div>
css
.center-flex {
  height: 240px;
  display: flex;
  /*下面1行元素由上向下排*/
  flex-direction: column;
  /*下面1行实现垂直居中*/
  justify-content: center;
  /*下面1行实现水平居中*/
  align-items: center;
  border: 2px dashed #f69c55;
}

p {
  background-color: yellow;  
  /*下面1行缩小P的行间距*/  
  margin:0.2em 0;    
}
原理:
       我是容器,我要将里面的元素按垂直居中、水平居中来进行放置;




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值