我本身的案例: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 * 一行代码改样式 */