Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在通过 css 更改 SVG 路径颜色:
.compute .svg path { fill: #fff; }
它工作得很好,但是在它上面运行 cssLint 时,我收到了这个警告:
Unknown property: "fill"
是 cssLint 错误吗?还是在 css 中使用这个属性来改变 SVG 路径的属性是一件坏事?
不,这不是一件坏事,这是正确的做法。cssLint 不支持这些属性。这只是其众多问题之一。我想你可以破解它:https ://github.com/CSSLint/csslint/wiki/Working-with-Rules 。另请参阅此问题:https ://github.com/CSSLint/csslint/issues/283 。