0

I am new to CSS and need help with the below. I am required to apply the below background color (i.e 255 255 255) for all browsers except IE in the below css snippet. And for IE , i am required to apply a background color as 33,33,33. I have tried certain CSS hacks with \0 , _ etc , but none seem to be working. Any help please!

input[type="file"] {
    background-color: rgb(255, 255, 255);
    color: rgb(33, 33, 33);
}
Melwin
  • 1
  • 2
  • Please can you include full code (HTML and CSS) which reproduces the problem you are having, your current code does not appear to be attempting to target IE in a special way. Any particular reason why you want IE to look different from the other browsers? Are you trying to target particular versions of IE or all versions? – Hidden Hobbes Jul 24 '15 at 07:10
  • Check this one http://stackoverflow.com/questions/567561/how-do-i-do-ie-conditionals-in-css – Matteo Rubini Jul 24 '15 at 07:16

0 Answers0