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;

你可能感兴趣的:(web前端)