I have some anchor links in my application which when disabled should look gray so I applied the following code in css file:-
a[disabled]
{
color: Grey !important;
text-decoration: none !important;
}
This seem to work fine but I want to exclude 1 link from taking this style when disabled. How can I do that?