<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
div.example {
pointer-events: none;
}
div.example2 {
pointer-events: auto;
}
</style>
</head>
<body>
<h2>La propriété pointer-events</h2>
<h3>Pointer-events: none</h3>
<div class="example">Cliquez ici: <a href="https://www.w3docs.com/learn-javascript.html">Tutoriel JavaScript </a></div>
<h3>Pointer-events: auto</h3>
<div class="example2">Cliquez ici: <a href="https://fr.w3docs.com/apprendre-css.html">Tutoriel CSS </a></div>
</body>
</html>