1、去掉a标签点击时出现的边框:
方法一:直接去掉
-webkit-tap-highlight-color:transparent;
方法二:给边框的颜色改为无
-webkit-tap-highlight-color:rgba(255,0,0,0);
2、去掉input标签去掉背景颜色
background: transparent;
-webkit-appearance:none; /*去除input默认样式*/
-webkit-appearance: none; ”来改变按钮在iPhone下的默认风格
3、不能选择某个标签
pointer-events: none;
4、获取里的焦点,div也可以
-webkit-user-modify:read-write-plaintext-only;