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.
| |||
|
feedback
|
|
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:
| |||
|
feedback
|
|
As IE9 does not support CSS3
can be replaced with
You can get the results to be very similar. | |||||||||||||||||||
feedback
|
|
This is a good plugin to use http://kilianvalkhof.com/2008/javascript/text-shadow-in-ie-with-jquery/. Hope this helps! | |||||||||||
feedback
|