Disable the default button style in the safari browser, and disable iButton.
Two days ago, I encountered another headache. After debugging the style on Chrome, I went to the mobile phone to open it. It was silly...
What is this...
I searched it to find out that this is a ghost of the appearance attribute...
For example, if you want a div to have a button style, you can write it like this.
Div {appearance: button;-moz-appearance: button;/* Firefox */-webkit-appearance: button;/* Safari and Chrome */}
So you can only display the default button style after you cancel it.
Input, button {appearance: none;-moz-appearance: none;-webkit-appearance: none ;}
Note browser support
All mainstream browsers do not support the appearance attribute.
Firefox supports the alternative-moz-appearance attribute.
Safari and Chrome support the replaced-webkit-appearance attribute.