Is there a way to achieve the look of engraved text with a text-shadow in IE9?
In Chrome and Firefox, I have used the following CSS (http://jsfiddle.net/YbyzF/):
text-shadow: 0px 2px 0px rgba(255,255,255,.3), 0px -2px 0px rgba(0,0,0,.3);
Unfortunately, IE9 does not support text-shadow.
I have tried using :after and :before pseudo-elements, but the :after element is not positioned correctly in this example (http://jsfiddle.net/chxfs/6/)
How can I move the :after element to the right position to mimic the effect of two text-shadows in IE9?