微信小程序改变 button disabled 样式

微信小程序Button怎么设置disabled时的样式?

/** 必须“提升指定样式规则的应用优先权(!important)。” **/
button[disabled] {
    color: #fff !important;
    background: #5bc0de !important;
    border-color: #46b8da !important;
}
    原文作者:jrue
    原文地址: https://segmentfault.com/a/1190000017380502
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞