IOS 下 input 有内阴影

iOS 下 input 标签会有一个内阴影,要怎么解决?
在 css 中 input 中加入 -webkit-appearance: none;

iOS 下在 webview 中滚动会出现卡顿,解决方式:
在 css 中 加入

* {
     -webkit-overflow-scrolling: touch;
  }

你可能感兴趣的:(IOS 下 input 有内阴影)