当前位置: 移动技术网 > IT编程>网页制作>CSS > 平板&Safari 开发tips

平板&Safari 开发tips

2018年03月30日  | 移动技术网IT编程  | 我要评论

css: 

*{
margin: 0;
padding: 0;
 /* 禁止用户点选网页内容 */
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
/* div添加点击事件后,禁止点击时出现阴影背景 */
-webkit-tap-highlight-color: transparent;
}

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网