How to remove the default link color of the html h

2019-01-21 01:54发布

问题:

The default link color is blue. How to remove the default link color of the html hyperlink tag <a>?

回答1:

The inherit property:

a { color: inherit; } 

… will cause the element to take on the colour of its parent (which is what I think you are looking for).



回答2:

you can do some thing like this:

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

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


回答3:

.cancela,.cancela:link,.cancela:visited,.cancela:hover,.cancela:focus,.cancela:active{
    color: inherit;
    text-decoration: none;
}

I felt it necessary to post the above class definition, many of the answers on SO miss some of the states



回答4:

This is also possible:

        a {
            all: unset;
        }

unset: This keyword indicates to change all the properties applying to the element or the element's parent to their parent value if they are inheritable or to their initial value if not. unicode-bidi and direction values are not affected.

Source: Mozilla description of all



回答5:

You have to use CSS. Here's an example of changing the default link color, when the link is just sitting there, when it's being hovered and when it's an active link.

a:link {
  color: red;
}

a:hover {
  color: blue;
}

a:active {
  color: green;
}
<a href='http://google.com'>Google</a>



回答6:

If you don't want to see the text decoration and default color which is provided by the browser, you can keep the following code in the top of your main.css file. So if you need some different color & decoration styling property you can override easily in the below of this code snippet in the style file.

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


回答7:

You can use System Color (18.2) values, introduced with CSS 2.0, but deprecated in CSS 3.

a:link, a:hover, a:active { color: WindowText; }

That way your anchor links will have the same color as normal document text on this system.



回答8:

Simply add this in CSS,

a {
    color: inherit;
    text-decoration: none;
}

that's it, done.



回答9:

Let's say your default color is green (#0F0), then you should add this to the top of your CSS:

a {color:#0F0}



回答10:

a:link{color:inherit;}

this is the simple one line can do all stuffs for you <3