view中用flex实现文字的垂直居中

视图容器view上设置

view{ display: flex; justify-content: center;align-items: center;} 

view相当于div是一个视图容器,传统的方法实现div中文字的水平垂直居中是设置div的两个属性:text-align:center;和line-height:100%;即可实现div容器中内容的水平垂直居中,那么今天我们来用flex弹性盒子来实现小程序中view视图容器里面内容的水平垂直居中,话不多说,直接上代码:

//wxml

  one
  two
  three

//wxss
.section{
  height: 200rpx;
  display: flex;
  flex-direction: row;
  /* 在父元素view属性上设置一下三个属性并不会实现子元素内容的水平垂直居中,所以要格外注意 */
  /* display: -webkit-flex; */
  /* align-items: center; */
  /* justify-content: center; */
}
.section view{
  width: 200rpx;
  height: 100%;
  /* 得在需要让内容居中的元素上设置以下三个元素才会使里面内容水平垂直居中*/
  display: flex;
  justify-content: center;
  align-items: center;
}
.section view:nth-child(1){
  background: red;
  /* 表示根据是否有剩余宽度进行缩放 */
  flex: 1;
}
.section view:nth-child(2){
  background: orange;
}
.section view:nth-child(3){
  background: pink;
}
image.png

你可能感兴趣的:(view中用flex实现文字的垂直居中)