Answers for "a tag remove color css"

CSS
3

how to remove link blue color from a tag using css

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

remove anchor tag color

a {
    color: #0060B6;
    text-decoration: none;
}

a:hover {
    color:#00A0C6; 
    text-decoration:none; 
    cursor:pointer;  
}
Posted by: Guest on May-30-2021

Browse Popular Code Answers by Language