我自己的案例:
设置了color没有作用
/* * 咔咔 * 微信号 fangkangfk * author:2018.9.12 * 一个文件实现微信退款 */ .operation button{ color: #8a8a8a; }
最后只加一行代码解决问题
.operation button{ color: #8a8a8a !important; }
!important是CSS1就定义的语法,作用是提高指定样式规则的应用优先权。语法格式{ cssRule !important },即写在定义的最后面,例如:box{color:red !important;}
/*
* 咔咔
* 微信号 fangkangfk
* author:2018.9.12
* 一行代码改样式
*/