I'm tryin gto style a button
HTML5 element and I see that there is an automatic appearance applied to these elements. Reading on blogs I found this solution:
.thing {
-webkit-appearance: value;
-moz-appearance: value;
appearance: value;
}
But then I checked and it seems this does not work on IE neither on Opera. How can I make this work in all browsers?