禁止文字被选中

body{ 

  // 禁止文字被鼠标选中 
  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/xsffliu/p/7685488.html