How To Disable A Link Using Css
Here we consider how to Disable A Link Using Css.
Suppose there is a link on the form as shown below.

The link is having a class named clsLink.
Now for disabling the link using CSS, follow these style.
.clsLink
{
pointer-events: none;
cursor: default;
}