赞
踩
记录一下CSS设置文字水平垂直居中。
对于直接在标签里面的文字,使用flex布局控制其中的文字水平和垂直居中
<!-- pages/test/test.wxml -->
<view class='myText'>水平、垂直居中</view>
/* pages/test/test.wxss */
.myText{
/* 用弹性盒子设置居中 */
display: flex;
align-items: center;/* 垂直居中 */
justify-content: center;/* 水平居中 */
/* 为了看效果,设置背景色和尺寸 */
background-color: green;
width: 500rpx;
height: 500rpx;
}
}
点个赞,一起加油啊!!!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。