我有一个问题,因为我为我的网站制作了一个自定义样式表,但它在 Chrome 中不起作用。链接是蓝色的,访问过的页面是洋红色的,并且链接在悬停时带有下划线。不起作用的代码:
a:link,
a:visited {
color:black;
}
a {
text-decoration: none;
}
a:active,
a.active {
text-decoration:none;
}
a:hover,
a:focus {
text-decoration: none;
color:#575757;
}
我试图弄清楚发生了什么,似乎 Chrome 没有看到这些属性。它用以下内容覆盖它们:
a:-webkit-any-link {
color: -webkit-link;
text-decoration: underline;
cursor: auto;
}
我的样式表适用于 Mozilla,所以我认为问题出在 Chrome 而不是我的样式表。我应该怎么做才能在 Chrome 中正确显示网站?