Answers for "css destroy link"

CSS
18

remove style from link

a, a:hover, a:focus, a:active {
     text-decoration: none;
     color: inherit;
 }
Posted by: Guest on February-22-2020
0

Disable Link using css

#element {
 pointer-events: none;
 cursor: unset
}
Posted by: Guest on April-20-2022

Browse Popular Code Answers by Language