I have a div that has this property:
text-shadow:2px 2px 3px #252525;
It works great in Firefox 5, but Internet Explorer 9 does not show it. I thought IE 9 was supposed to support CSS3?
How can I get a similar result in IE then?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
IE9 does not understand
text-shadowproperty. You can usefilterproperty (IE only) instead:text-shadow:2px 2px 3px #252525;can be replaced with
filter: Shadow(Color=#252525, Direction=45, Strength=2);The result must be similar.