在不知道文字颜色的情况下使链接颜色与文字颜色相同

时间:2011-09-16 06:23:02

标签: css colors hyperlink

我是否可以使用一些CSS将链接颜色设置为与普通文本相同的值?

2 个答案:

答案 0 :(得分:16)

只需设置

即可
a { color: inherit; }

编辑:您可能需要添加

a { color: inherit !important; }

但是最佳做法建议您避免使用!important 重叠。

答案 1 :(得分:0)

只是一小部分:

a{ 
  color: inherit; 
}

a:visited{
  color:inherit;
}

a:hover{
  color:inherit;
}