1.去除iphone下input的默认样式:
input { -webkit-appearance:none; border-radius: 0; }
2.禁止用户长按选择页面内容:
body{ -webkit-user-select:none; }
3.实现:active效果:
<body ontouchstart=""></body>
4.禁止ios自动识别号码:
<meta name="format-detection" content="telephone=no"/>
5.网页中独立区域滚动缓冲效果:
-webkit-overflow-scrolling:touch;
6.移除移动端点击a链接触发颜色块:
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);