平板&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;
}
下一篇: 学web前端是自学好还是去培训机构?