首页htmluser_selectCSS Property Value - 如何user-select: none; 从所选图片中删除蓝色覆盖

CSS Property Value - 如何user-select: none; 从所选图片中删除蓝色覆盖

我们想知道如何user-select: none; 从所选图片中删除蓝色覆盖。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.noSelect {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

img {
  height: 5em;
  width: 5em;
}
</style>
</head>
<body>
  <img class="noSelect" src="http://www.w3cschool.cn/style/download.png" />
  <img src="http://www.w3cschool.cn/style/download.png" />
</body>
</html>