欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

平板&Safari 开发tips

程序员文章站 2022-06-18 16:52:16
css: *{ margin: 0; padding: 0; /* 禁止用户点选网页内容 */ -webkit-touch-callout:none; -webkit-user-select:none; -khtml-user-select:none; -moz-user-select:none; ......

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;
}