I'm using a CSS class to invert img colors.
This is how I'm doing to do this:
<style type="text/css">
.invertimg{
-webkit-filter: invert(100%);
-ms-filter: invert(100%);
-o-filter: invert(100%);
filter: invert(100%);
}
</style>
Everything works fine with Firefox and Chrome but Internet Explorer and Safari Mobile (I tested it on iOS 8) don't invert img colors.
I've been searching for this for days without any solutions.
Is there something I'm doing wrong? How can I do to convert img colors and make IE and Safari Mobile converting correctly?
Thanks.