``` img { -webkit-filter: saturate(10%); } ``` This is confuzed as the LESS filter function for saturating colors and throws an error. String interpolation does work, however: ``` img { -webkit-filter: ~"saturate(10%)"; } ```
This is confuzed as the LESS filter function for saturating colors and throws an error. String interpolation does work, however: