Answers for "make anchor disabled html"

CSS
0

make an anchor tag inactive

<style>
.disabled-link {
  pointer-events: none;
}
</style>
<a href="https://google.com" class="disabled-link">Google.com</a>
Posted by: Guest on August-03-2021
0

Disabled href tag

<a href="link.html" class="disabled">Link</a>
 Run code snippet
Posted by: Guest on December-08-2021

Browse Popular Code Answers by Language