我正在通过css更改SVG路径颜色:
.compute .svg path {
fill: #fff;
}
它工作得很好,但是在运行cssLint时,我收到了这个警告:
Unknown property: "fill"
是cssLint错误吗?或者在css中使用此属性来更改SVG路径的属性是一件坏事吗?
答案 0 :(得分:3)
不,这不是一件坏事,这是正确的做法。 cssLint不支持这些属性。这只是众多问题中的一个。我想你可以破解它:https://github.com/CSSLint/csslint/wiki/Working-with-Rules。另请参阅此问题:https://github.com/CSSLint/csslint/issues/283。