Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如前所述,链接颜色仅在 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;}
知道为什么会这样吗?
好的,所以我发现了问题。在 chrome 中,我的文本颜色也覆盖了我的链接,但如您所见,我实际上并没有在 a:link 中设置链接颜色
仍然感谢大家的投入
a:链接{颜色:深灰色;文字装饰:无;}
a:悬停{颜色:深灰色;}
a:活动{颜色:深灰色;} /* 不要在链接下划线 */
a:visited {color: darkgray ;text-decoration: none ;}