如何使用 CSS 禁用高光?

How to disable high lighting with CSS?

我正在尝试使用 CSS 禁用突出显示。用户很容易不小心突出显示我网站上的元素,这会破坏外观。我可以用什么 CSS 属性 来阻止它?

突出显示示例:

试试这个。

.noselection {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}