- 禁止文字选取
*:not(input,textarea) {
-webkit-user-select:none;
user-select:none;
-webkit-tap-highlight-color:rgba(255,0,0,0);
}- 禁止移动端选中时的高亮状态
body {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
坏蛋格鲁