微信小程式改變 button disabled 樣式

jrue發表於2019-02-16

微信小程式Button怎麼設定disabled時的樣式?

/** 必須“提升指定樣式規則的應用優先權(!important)。” **/
button[disabled] {
    color: #fff !important;
    background: #5bc0de !important;
    border-color: #46b8da !important;
}

相關文章