Com*_*r7G 7 html text highlight
我的页面的一部分需要双击,这会产生不良影响,有时用户会无意中突出显示页面上的某些文本.
它真的很乱,但除了使用图像而不是文本之外,还有一种巧妙的方法可以阻止这种情况发生吗?
谢谢
aru*_*nes 13
这是css禁用文本选择. 如何禁用使用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;
Run Code Online (Sandbox Code Playgroud)