“Como desativar o link em hmtl” Respostas de código

Como desativar um link

<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 Desativar link de âncora

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

Como desativar o link em hmtl

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

Respostas semelhantes a “Como desativar o link em hmtl”

Perguntas semelhantes a “Como desativar o link em hmtl”

Mais respostas relacionadas para “Como desativar o link em hmtl” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código