I've created a simple form. However, the button style does not work on iOS (neither in Chrome, nor Safari). Any ideas?
.submit{
width:100%;
background:#17AADF;
color:#fff;
font-size:12px;
border:none;
border-radius:3px;
padding:16px;
margin-top:40px;
cursor:pointer;
}
.submit:hover{
background:#000;
}
<input type="submit" class="submit" value="Submit" />
Please try this code
input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
it will help
.submit { -webkit-appearance: none; }
jsfiddle : demo
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With