CSS 禁止鼠标选中

// 禁止文字被鼠标选中 
moz-user-select: -moz-none; 
-moz-user-select: none; 
-o-user-select:none; 
-khtml-user-select:none; 
-webkit-user-select:none; 
-ms-user-select:none; 
user-select:none;

  这是兼容各种浏览器的样式,使用正常使用最后一个就行

原文地址:https://www.cnblogs.com/Lyh1997/p/10066796.html