Ejemplo 1: cómo deshabilitar un enlace
<style>
.isDisabled {
color: currentColor;
cursor: not-allowed;
opacity: 0.5;
text-decoration: none;
}
</style>
<a class="isDisabled" href="https://unfetteredthoughts.net">Disabled Link</a>
Ejemplo 2: deshabilitar un clic
// CSS
.not-active {
pointer-events: none;
cursor: default;
text-decoration: none;
color: black;
}
// HTML
<a href="link.html" class="not-active">Link</a>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)