微信小程序:如何让按钮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;
}

 效果如下

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM