首页htmlpointer_eventsCSS Property Value - 如何pointer-events: none;

CSS Property Value - 如何pointer-events: none;

我们想知道如何pointer-events: none;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
img {
  pointer-events: none;
  cursor: default;
}
</style>
</head>
<body>
  <a href="http://google.com">link <img src="http://www.w3cschool.cn/style/download.png" />
  </a>
</body>
</html>