css禁止html标签被选中的方法
(编辑:jimmy 日期: 2024/11/16 浏览:3 次 )
以下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;
下一篇:ie8下input的title闪烁二次显示问题