Answers for "html email prevent hyperlink"

0

how to stop text in html from becoming a 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>
Posted by: Guest on July-18-2020

Browse Popular Code Answers by Language