I'm changing an SVG path color via css :
.compute .svg path {
fill: #fff;
}
It works just fine, but when running cssLint over it, I had this warning:
Unknown property: "fill"
Is it a cssLint error? Or is it a bad thing to use this property in css to change the attributes of an SVG path?