I have a div and i gave it some css properties, it works on every other browser apart from 1e8 and below (as usuall). How can i make it work on ie8?
http://jsfiddle.net/WY5Cu/
I have a div and i gave it some css properties, it works on
Share
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.
Have a look at http://www.colorzilla.com/gradient-editor/ – the gradient editor there will generate IE8 compatible background gradients.
For the
box-shadow, this rule should emulate your current code somewhat:albeit without the inset shadow (I doubt there’s a way to do that in IE8).
To combine multiple filter declarations (for your shadow and gradient fill) you’ll need to chain them together with a space. For example:
For IE7 you’ll need to duplicate the IE8 rules, but with
filterinstead of-ms-filterand leave out the start and end quotes.