在css代码后面紧跟
!important
比如有个Bell元素
本身代码 颜色灰色
color: #585858
但是某些情况需要使用另一个样式先生效
但是在改变颜色会无效 比如
.bell-has-unread {
color: red;
animation: blink 1s linear infinite;
animation-iteration-count: infinite;
}
这时候会发现颜色还是灰色
这里就需要用到important 这样就可以了 因为!important的原因color:red的权重优先级会比color:#585858要高
.bell-has-unread {
color: red !important;
animation: blink 1s linear infinite;
animation-iteration-count: infinite;
}