天天看點

css禁止頁面滑鼠框選,選中

有些需求是禁止使用者框選的,使得一些文本無法被複制

body {
  -moz-user-select  : none;
  -khtml-user-select: none;
  user-select       : none;
    }
           

繼續閱讀