⼩程序:如何让按钮button中的⽂字居中效果
wxml
<button type="primary" form-type='submit'>登录</button>
写文章的小程序wxss
添加如下样式:
button[type="primary"] {
display:flex;
align-items: center;
justify-content: center;
}
所有样式如下:
button[type="primary"] {
display:flex;
align-items: center;
justify-content: center;
height: 40px;
line-height: 40px;
font-size: 36rpx;
text-align: center;
background-color: #007AFF !important;
margin-top: 20px;
margin-bottom: 20px;
color: #FFFFFF;
border-radius: 10px;
}
效果如下
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论