我正在尝试覆盖CSS,但无法正常工作。
.component.img.white *:not(.btn){
color:#fff;
}
试图做到这一点:
.component.img.white *:not(.btn){
color:none !important;
}
答案 0 :(得分:2)
无不是有效 css 颜色
.component.img.white *:not(.btn){
color: transparent !important;
}
或者您可以使用
.component.img.white *:not(.btn){
color: unset !important;
}
答案 1 :(得分:1)
您可以尝试
.component.img.white *:not(.btn){
color: inherit;
}
它将使用一个父值或仅显式设置值