平板&Safari 开发tips
程序员文章站
2022-03-04 11:40:59
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;
}
上一篇: CSS linear-gradient属性案例详解
下一篇: jquery结合css实现返回顶部功能