When using both webkit filters "blur" and "invert", only the blur effect is functioning properly. However, if the "blur" filter is removed, then the "invert" filter works as intended.
As of now, only Chrome and Opera browsers are responding correctly to the code.
Is there a solution to make this code work for recent versions of Internet Explorer and Firefox?
body {
-webkit-filter: invert(100%);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
}