如何覆盖CSS

时间:2019-06-26 12:04:05

标签: css

我正在尝试覆盖CSS,但无法正常工作。

.component.img.white *:not(.btn){
color:#fff;
}

试图做到这一点:

 .component.img.white *:not(.btn){
  color:none !important;
  }

2 个答案:

答案 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;
  }

它将使用一个父值或仅显式设置值