Button appearance

Hello,
I have a problem with styling buttons with CSS . For some reason, buttons are not being displayed as I expect. responsive web design testers show a result but testing the page on a mobile device shows another. Here is the pen: https://codepen.io/malekhammou/full/MLXmbP and these are the different results 52712974_301365973860593_475646548332511232_n

.

You need to tell iOS not to apply default styles. Add:

input[type="submit"] {
  ...
  -webkit-appearance: none;
}
1 Like

Thank you very much !
Kind regards