Styling input buttons for iPad and iPhone Styling input buttons for iPad and iPhone ios ios

Styling input buttons for iPad and iPhone


You may be looking for

-webkit-appearance: none;


Please add this css code

input {-webkit-appearance: none;-moz-appearance: none;appearance: none;}


I recently came across this problem myself.

<!--Instead of using input--><input type="submit"/><!--Use button--><button type="submit"><!--You can then attach your custom CSS to the button-->

Hope that helps.