Answers for "html make link inactive"

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

Browse Popular Code Answers by Language