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