微信小程序-文字水平垂直居中

1、对于直接在标签里面的文字


<view class='myText'>水平、垂直居中view>

2、使用flex布局控制其中的文字水平和垂直居中

/* pages/test/test.wxss */
.myText{
  /* 用弹性盒子设置居中 */
  display: flex;
  align-items: center;/* 垂直居中 */
  justify-content: center;/* 水平居中 */

  /* 为了看效果,设置背景色和尺寸 */
  background-color: green;
  width: 500rpx;
  height: 500rpx;
}
}

3、效果
微信小程序-文字水平垂直居中_第1张图片

你可能感兴趣的:(微信小程序)