pointer-events: none | auto |initial | inherit;
<!DOCTYPE html>
<html>
<head>
<title>
pointer-events Property
</title>
<style>
body {
text-align: center;
}
p {
font-size: 20px;
pointer-events: none;
}
</style>
</head>
<body>
<center>
<h1> Welcome to the bianchenghao6.com </h1>
<h2> pointer-events:auto; </h2>
<p>
<a href="https://bianchenghao6.com/"> bianchenghao6.com </a>
</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>
pointer-events Property
</title>
<style>
body {
text-align: center;
}
p {
font-size: 20px;
pointer-events: auto;
}
</style>
</head>
<body>
<center>
<h1> Welcome to the bianchenghao6.com </h1>
<h2> pointer-events:auto; </h2>
<p>
<a href="https://bianchenghao6.com/"> bianchenghao6.com </a>
</p>
</body>
</html>