How to remove the default link color of the html hyperlink 'a' tag?

后端 未结 12 2132
时光说笑
时光说笑 2020-12-07 08:56

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

12条回答
  •  -上瘾入骨i
    2020-12-07 09:32

    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.

提交回复
热议问题