css shadows are fine with firefox and chrome but not showing on Internet Explorer
I used following code
-moz-box-shadow: 0 0 20px #000;
Can someone suggest me a solution for this
Thank You!
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.
-moz-box-shadow: 0 0 20px #000;is only for FireFox.You can use
box-shadow: 0 0 20px #000;IE < 9 needs some help. You need something like this
You’ll have to play with the values.
All together it could be