Is there an easy way to have css3 text-shadow's working in IE9? At least a single text shadow would be great. I guess ideally IE8 is supported as well. I'm hoping there's a simple jquery plugin or .htc file which just looks at text-shadow css property of an element and implements it for IE9.

link|improve this question

70% accept rate
feedback

3 Answers

up vote 7 down vote accepted

Yes, but not how you would imagine. According to caniuse (a very good resource) there is no support and no polyfill available for adding text-shadow support to IE. However, IE has their own proprietary text shadow (detailed here).

Example implementation, taken from their website:

p.shadow { 
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#0000FF,direction=45);
}
link|improve this answer
feedback

As IE9 does not support CSS3 text-shadow, I would just use the filter property for IE instead. Live example: http://jsfiddle.net/dmM2S/

text-shadow:1px 1px 1px red; /* CSS3 */

can be replaced with

filter: Shadow(Color=red, Direction=130, Strength=1); /* IE Proprietary Filter*/

You can get the results to be very similar.

link|improve this answer
4  
filter: Shadow(Color=red, Direction=130, Strength=1); /* IE Proprietary Filter*/ makes it even worse than having no text-shadow at all. – wolo Sep 1 '11 at 8:02
1  
filter: glow(color=black, strength=1) seems to give a better effect – Neil Sarkar Mar 27 at 15:37
1  
Be careful with specifying filter: Shadow and text-shadow at the same time, like in your fiddle. After all, IE10 will support text-shadow and I assume that it also supports filter: Shadow. The result of applying both properties could be interesting. – feklee Apr 25 at 15:19
1  
@feklee: IE10 dropped support for filters in an effort to become more standards compliant: blogs.msdn.com/b/ie/archive/2011/12/07/…. If you check the fiddle in IE10 you will see that only the CSS3 text-shadow works. – tw16 May 21 at 14:15
Good to know - thanks! – feklee May 21 at 18:55
feedback

This is a good plugin to use http://kilianvalkhof.com/2008/javascript/text-shadow-in-ie-with-jquery/.

Hope this helps!

link|improve this answer
@AlienWebguy Any reason for modifying the link – wcpixels Aug 2 '11 at 0:09
1  
Disclosure of the URL so people don't have to hover over "Link to plugin" to see where it's going to take them. – AlienWebguy Aug 2 '11 at 0:28
1  
@AlienWebguy I hadn't thought of that I will use this as standard practice in the future +1 – wcpixels Aug 2 '11 at 1:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.