I have a button but in iOS Safari it looks different. I have tried with this code -webkit-appearance: none;
and it does not work for me.
This is the CSS of the button (also in JSFiddle ):
button {
padding: 5px 20px;
overflow: hidden;
background-color: #3fc2f0;
/*background-image: linear-gradient(#3fc2f0, #3fc2f0);*/
-webkit-border-radius: 24px;
-moz-border-radius: 24px;
border-radius: 24px;
-webkit-box-shadow: 0 2px 5px #19748f;
-moz-box-shadow: 0 2px 5px #19748f;
box-shadow: 0 2px 5px #19748f;
font-family: Arial;
color: #ffffff;
font-size: 16px;
position: relative;
}
<button>Comprar</button>
That looks like this in different browsers (the size is the same, the problem is the different border):
Even with the same CSS they look different on the same iPad. Why does that happen and how can I solve it?