如何删除iPhone <button>样式?

jem*_*oii 10 iphone mobile html5 button css3

http://ingoodtastemag.com/

在iPhone上,按钮是圆形的,带有渐变.但是,在我们迄今为止测试过的所有其他桌面浏览器和Android上,它都是正方形.我希望按钮保持正方形.我需要什么CSS重置?

Shi*_*Jos 27

此圆角是Safari浏览器和iOS 5设备的默认属性.要覆盖它,请为按钮使用以下样式:

-webkit-appearance: none;
border-radius: 0;
Run Code Online (Sandbox Code Playgroud)