解决css禁止html标签被选中的方法
来源:动视网
责编:小采
时间:2020-11-27 18:52:30
解决css禁止html标签被选中的方法
解决css禁止html标签被选中的方法:以下CSS样式实现了各浏览器的标签禁止选中功能,需要的朋友可以参考下moz-user-select: -moz-none; -moz-user-select: none; -o-user-select:none; -khtml-user-select:none; -webkit-user-select:none; -ms-use
导读解决css禁止html标签被选中的方法:以下CSS样式实现了各浏览器的标签禁止选中功能,需要的朋友可以参考下moz-user-select: -moz-none; -moz-user-select: none; -o-user-select:none; -khtml-user-select:none; -webkit-user-select:none; -ms-use

以下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标签被选中的方法
解决css禁止html标签被选中的方法:以下CSS样式实现了各浏览器的标签禁止选中功能,需要的朋友可以参考下moz-user-select: -moz-none; -moz-user-select: none; -o-user-select:none; -khtml-user-select:none; -webkit-user-select:none; -ms-use