I have a very basic question. I am setting height to 50px for my html form submit button. It works on Firefox but not Chrome nor Safari. The code is as simple as following:<
Change it from to and add -webkit-appearance: none; to the start of your CSS, eg:
-webkit-appearance: none;
.submitbtn { -webkit-appearance: none; height: 50px; background-color:#FFF; color:#666; font-weight:bold; border: solid #666 1px; font-size: 14px; }