首页 > 微信 > 详细

微信小程序view居中

时间:2019-09-04 22:25:39      阅读:936      评论:0      收藏:0      [点我收藏+]


.wxml

<view class=‘text_align‘ >水平居中</view>
<view class=‘line_height‘ >垂直居中</view>
<view class=‘center‘ >水平居中||垂直居中</view>


.wxss

.text_align{
width: 350rpx;
height: 350rpx;
background-color: gray;
text-align: center; /** 水平居中 **/
}

.line_height{
width: 350rpx;
height: 350rpx;
background-color: orange;
line-height: 350rpx; /** 垂直居中 **/
}

.center{
width: 350rpx;
height: 350rpx;
background-color: brown;
line-height: 350rpx; /** 垂直居中 **/
text-align: center; /** 水平居中 **/
}

微信小程序view居中

原文:https://www.cnblogs.com/lsyy2017/p/11461551.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!