Answers for "disable links css"

CSS
3

remove default style from links css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}
Posted by: Guest on June-18-2020
2

html disable anchor link

a.isDisabled {
  pointer-events: none;
}
Posted by: Guest on April-16-2020

Browse Popular Code Answers by Language