首页 > 编程语言 >微信小程序:文字居中沉底

微信小程序:文字居中沉底

时间:2023-03-21 16:33:20浏览次数:47  
标签:居中 right wxss family bottom 微信 沉底 text font


# 核心代码
<!--guide.wxml-->
<view class="container">
<view class="usermotto">
<image class="guide-icon" src="../images/icon.svg"></image>
<text class="user-motto">{{motto}}</text>
</view>
</view>


/**guide.wxss**/
# 如果需要调整,只需要调整bottom这个属性的大小即可
.usermotto {
position: fixed;
text-align: center;
bottom: 100rpx;
left: 0;
right: 0;
font-size: 40rpx;
font-family: cursive;
}

 

标签:居中,right,wxss,family,bottom,微信,沉底,text,font
From: https://blog.51cto.com/u_16021118/6140356

相关文章