我本身的案例:css
設置了color沒有做用微信
/* * 咔咔 * 微信號 fangkangfk * author:2018.9.12 * 一個文件實現微信退款 */ .operation button{ color: #8a8a8a; }
最後只加一行代碼解決問題code
.operation button{ color: #8a8a8a !important; }
!important是CSS1就定義的語法,做用是提升指定樣式規則的應用優先權。語法格式{ cssRule !important },即寫在定義的最後面,例如:box{color:red !important;}io
/* * 咔咔 * 微信號 fangkangfk * author:2018.9.12 * 一行代碼改樣式 */