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

高洛峰
高洛峰 原创
2017-03-14 16:08:59 1098浏览

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


以上就是解决css禁止html标签被选中的方法的详细内容,更多请关注php中文网其它相关文章!

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。