清除苹果手机input的默认样式

374 阅读1分钟

方法就是在你css加上下面这一行代码就可以了:

input[type=button], input[type=submit], input[type=file], button { cursor: pointer; -webkit-appearance: none; }

处理前

处理后