sebastiano-guerriero
12/8/2013 - 10:00 PM

The appearance property is used to display an element using a platform-native styling based on the users' operating system's theme.

The appearance property is used to display an element using a platform-native styling based on the users' operating system's theme.

.foo {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}