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.
|
|
|||
|
|
|
Yes, but not how you would imagine. According to caniuse (a very good resource) there is no support and no polyfill available for adding Example implementation, taken from their website (works in IE5.5 through IE9):
For cross-browser compatibility and future-proofing of code, remember to also use the CSS3 standard |
||||
|
|
|
As IE9 does not support CSS3
can be replaced with
You can get the results to be very similar. |
|||||||||||||||||||||
|
|
Try CSS Generator. You can choose values and see the results online. Then you get the code in the clipboard.
|
||||
|
|
|
This is a good plugin to use http://kilianvalkhof.com/2008/javascript/text-shadow-in-ie-with-jquery/. Hope this helps! |
|||||||||||
|
|
I was looking for a cross-browser text-stroke solution that works when overlaid on background images. think I have a solution for this that doesn't involve extra mark-up, js and works in IE7-9 (I haven't tested 6), and doesn't cause aliasing problems. This is a combination of using CSS3 text-shadow, which has good support except IE (http://caniuse.com/#search=text-shadow), then using a combination of filters for IE. CSS3 text-stroke support is poor at the moment. IE Filters The glow filter (http://www.impressivewebs.com/css3-text-shadow-ie/) looks terrible, so I didn't use that. David Hewitt's answer involved adding dropshadow filters in a combination of directions. ClearType is then removed unfortunately so we end up with badly aliased text. I then combined some of the elements suggested on useragentman with the dropshadow filters. Putting it together This example would be black text with a white stroke. I'm using conditional html classes by the way to target IE (http://paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/).
|
||||
|
|
I tried out the filters referenced above and strongly disliked the effect it created. I also didn't want to use any plugins since they'd slow down loading time for what seems like such a basic effect. In my case I was looking for a text shadow with a 0px blur, which means the shadow is an exact replica of the text but just offset and behind. This effect can be easily recreated with jquery.
This will create an identical effect to the css3 text-shadow below.
here's a working example (see the large white text over the main banner image) http://www.cb.restaurantconnectinc.com/ |
||||
|
|