如何用CSS禁用高亮度?

时间:2017-06-05 04:38:25

标签: css frontend

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

突出示例: enter image description here

1 个答案:

答案 0 :(得分:0)

试试这个。

.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 */
}