垂直居中
设置Page高度100%,并在子控件设置justify-content: center;
wcss
page{
height: 100%;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
height: 100%;
}
wxml
<view class="container">
<text style="font-size:30rpx;color:#333;">绑定成功,可进行业务咨询哦~</text>
</view>
网友评论