prefixfree
prefixfree copied to clipboard
filter doesn't work without prefix
+1
Yes, this is a known issue. The problem is that feature detection fails, because browsers already support an unprefixed filter
property due to SVG. Even if we special case it, we still need to be able to distinguish SVG uses from CSS uses and only prefix the latter. It seems that it would require tons of code, and not with great performance, so maybe it would be better as a plugin. But I'm open to ideas if anyone has any good ones about how to do it...
+1. The CSS filter property is the one place in my app where I have to use vendor prefixes, and it sticks out like a sore thumb.
Is suppose this is the reason it fails for clip-path
as well.
Yup. :(