“Cómo deshabilitar el enlace en HMTL” Código de respuesta

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>
Honey T

html deshabilitar el enlace de anclaje

a.isDisabled {
  pointer-events: none;
}
Clever Chipmunk

Cómo deshabilitar el enlace en HMTL

.isDisabled {
  color: currentColor;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
  pointer-events: none;
}
Ankur

Respuestas similares a “Cómo deshabilitar el enlace en HMTL”

Preguntas similares a “Cómo deshabilitar el enlace en HMTL”

Más respuestas relacionadas con “Cómo deshabilitar el enlace en HMTL” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código