Reputation: 3016
I am using this for non-IE browsers:
text-shadow: 1px 1px 5px #4C5157;
For IE 9 I am using:
filter: Shadow(Color=#4C5157, Direction=45, Strength=1);
But the shadow in IE is hideous. How can I tweak it so that it looks like the way it does in non-ie browsers?
I looked here before: Text Shadow in Internet Explorer?
But it doesn't solve my issue.
Upvotes: 0
Views: 95
Reputation: 6044
If you're looking to support IE7 and IE6 you can use a .htc file, which will allow you to apply CC3 styling, including drop shadows.
You can find more info here: http://css3pie.com
The about page shows you how to apply it: http://css3pie.com/about/
All you'll have to do is link the .htc file like so:
#myElement {
...
behavior: url(PIE.htc);
}
Upvotes: 0
Reputation: 620
I haven't test this live, but you might try this.
filter: glow(color=#4C5157,strength=1);
Upvotes: 2