I am trying to make a page that ‘unblurs’ (removes the text shadow) on hover.
This works in all browsers except for IE: http://mmhudson.com/brett.html
It doesn’t work because I am setting the color to ‘transparent’ when the element is not being hovered on and the IE filter ‘blur’ inherits that so the text shadow is also transparent.
How can I make the filter not inherit that or make it so that only the shadow is invisible?
I am currently using a plugin, but I could use regular css if that is preferable.
Note the html if IE block
I only need support for IE8 and IE9, but IE7 and earlier would be good too.
The problem is not that it is inheriting the transparent color, it’s that IE doesn’t support text-shadow at all.
Use this stackoverflow.com/questions/6905658/css3-text-shadow-in-ie9
———–EDIT————–
Is this what you’re looking for?
http://jsfiddle.net/PaDwt/4/
-CSS
-JS
This works for me in IE9.