0

如前所述,链接颜色仅在 Chrome(我的默认浏览器)中发生变化。

这是我放在外部 CSS 文件中的代码:

a:link {text-decoration: none;}
a:hover { color:darkgray; }
a:active { color:darkgray; }  /* Don't underline links */

a:visited {color:darkgray;text-decoration: none;}

知道为什么会这样吗?

4

1 回答 1

0

好的,所以我发现了问题。在 chrome 中,我的文本颜色也覆盖了我的链接,但如您所见,我实际上并没有在 a:link 中设置链接颜色

仍然感谢大家的投入

a:链接{颜色:深灰色;文字装饰:无;}

a:悬停{颜色:深灰色;}

a:活动{颜色:深灰色;} /* 不要在链接下划线 */

a:visited {color: darkgray ;text-decoration: none ;}

于 2012-10-23T03:37:23.897 回答