Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<head>
<style> 
div.ex1 {
  pointer-events: none;
}
div.ex2 {
  pointer-events: auto;
}
</style>
</head>
<body>
<h1>pointer-events 指针事件属性</h1>
<p>移动到下面的链接,查看是否对指针事件做出反应。</p>
<h2>pointer-events: none:</h2>
<div class="ex1">Go to <a href="https://www.begtut.com/html">HTML 教程</a></div>
<h2>pointer-events: auto (default):</h2>
<div class="ex2">Go to <a href="https://www.begtut.com/css">CSS 教程</a></div>
</body>
</html>