Currently, I am implementing a CSS 3 text shadow to mimic a bevel and emboss effect on my web application. Unfortunately, when viewed on IE 10, the shadow appears distorted which is quite frustrating. I have not yet tested it on IE 9. Is there a solution to this issue?
text-shadow: 0px 1px 1px #A4A4A4;
filter: dropshadow(color=#A4A4A4, offx=0, offy=-1);
Are there any javascript libraries available that can help display text shadows in IE? Perhaps there are some additional tricks or CSS properties that might resolve the problem?