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);
}