Css Disable Enable Link Code Example


Example 1: how to disable 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>

Example 2: disabled a click


// CSS
.not-active {
pointer-events: none;
cursor: default;
text-decoration: none;
color: black;
}

// HTML
<a href="link.html" class="not-active">Link</a>

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable