停止突出显示的HTML文本

前端之家收集整理的这篇文章主要介绍了停止突出显示的HTML文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的页面的一部分需要双击,这会产生不良影响,有时用户会无意中突出显示页面上的某些文本.

它真的很乱,但除了使用图像而不是文本之外,还有一种巧妙的方法来阻止这种情况发生吗?

谢谢

解决方法

这是css禁用文本选择.
How to disable text selection highlighting using CSS?
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
原文链接:https://www.f2er.com/html/226577.html

猜你在找的HTML相关文章