`
wenxin2009
  • 浏览: 316033 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

html/css

    博客分类:
  • html
 
阅读更多

1、html5不禁止长按选择:

* {
-webkit-touch-callout:inherit;
-webkit-user-select:text;
-khtml-user-select:text;
-moz-user-select:text;
-ms-user-select:text;
user-select:text;
}

    禁止长按选择:

* {
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics