css 文本不被选中

来源:互联网 发布:软考程序员科目有哪些 编辑:程序博客网 时间:2024/05/16 12:06
body{
             -moz-user-select:none; /*火狐*/
             -webkit-user-select:none; /*webkit浏览器*/
             -ms-user-select:none; /*IE10*/
             -khtml-user-select:none; /*早期浏览器*/
             user-select:none;
}
0 0