Answers for "html anchor remove blue attribute"

1

remove anchor tag color

a { color: inherit; }
Posted by: Guest on May-30-2021
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

Code answers related to "html anchor remove blue attribute"

Browse Popular Code Answers by Language