Horje
how to disable link in hmtl Code Example
html disable anchor link
a.isDisabled {
  pointer-events: none;
}
how to disable a link
<style>
.isDisabled {
  color: currentColor;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
}
</style>
<a rel="nofollow" class="isDisabled" href="https://unfetteredthoughts.net">Disabled Link</a>
how to disable link in hmtl
.isDisabled {
  color: currentColor;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
  pointer-events: none;
}




Css

Related
media query for mobile min and max width Code Example media query for mobile min and max width Code Example
how to remove default padding of div Code Example how to remove default padding of div Code Example
css background image svg not showing Code Example css background image svg not showing Code Example
how to give opacity to border Code Example how to give opacity to border Code Example
how to make a list vertical in css Code Example how to make a list vertical in css Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12