如何阻止文本被选中并使背景变为蓝色?

时间:2015-06-11 21:59:41

标签: html

我可以阻止文本被选中并使背景变蓝吗?由它引起的蓝色背景是主要问题,但如果删除蓝色背景,则可以阻止选择文本。

示例:This is an example from the internet

1 个答案:

答案 0 :(得分:2)

您需要使用user-select: none;。 完全支持使用:

-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://jsfiddle.net/7mfbk1o8/