remove anchor tag style code example

Example 1: remove styling from a tag

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
 }

Example 2: how to remove link blue color from a tag using css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}

Example 3: remove style from a tag

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}

Example 4: remove style from a tag

a { color: inherit; }

Example 5: remove anchor tag color

a { color: inherit; }

Example 6: remove anchor tag color

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

a:hover {
    color:#00A0C6; 
    text-decoration:none; 
    cursor:pointer;  
}

Tags:

Css Example