css禁止html标签被选中的方法

  • A+
所属分类:编程茶楼

以下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;