I have CSS rules on button input:
button {border:solid 1px black;}
As long as I apply any border to an input or button, the browser switches the presentation of that input form OS (rendered by OS with shadowed butotn, rounded corners, hoover cyan etc.) to standard box-model.
Now I want to revert that for some class of buttons. For example I want:
<button class="default-os">Looks like Windows-made</button> to look like without any styles at all.
Is there a way to do that? I have tried various none and inherit values of CSS rules, but none of them works.