Currently, I am updating the color of an SVG path using CSS:
.compute .svg path {
fill: #fff;
}
The functionality is working properly, however, during a CSSLint check, I received this warning:
Unknown property: "fill"
I am unsure if this is an error with CSSLint or if using the fill property in CSS to change SVG path attributes is considered bad practice. Can anyone provide insight?