0

I'm using the following css code in my web page:

appearance: none;
-moz-appearance: none;        /* Firefox */
-webkit-appearance: none;    /* Safari and Chrome */    

Does these codes support IE6 / IE7 / IE8? if not, then is there any alternate code that can work in IE6/IE7/IE8?

Ajay Kulkarni
  • 2,900
  • 13
  • 48
  • 97

1 Answers1

0

As you can see here the IE is not supporting appearance.

The appearance property is not supported in any of the major browsers. Firefox supports an alternative, the -moz-appearance property.
Safari and Chrome support an alternative, the -webkit-appearance property

Jens
  • 67,715
  • 15
  • 98
  • 113