这里有一些非常简单的标记和CSS:
a { color: red; } a:link { color: green; }
<a href="#">one</a> <a href="">two</a> <a href>three</a> <a>four</a>
现在从spec:
in HTML4,the link pseudo-classes apply to A elements with an “href”
attribute.
所以我期望前3个链接是绿色的.
但不,结果实际上只有具有非空href的第一个链接是绿色的.
所以我使用inspect元素,我看到a:link选择器实际上覆盖了前3个案例中的一个选择器,但是由于某些原因只适用于第一种情况的样式.
这里发生了什么?
还有一件事,当我测试各种浏览器时,我注意到Chrome,Firefox和IE11都产生了相同的结果,除了在Firefox中,当我重新加载(相同)代码(在小提琴中只需点击“运行”) – 所有前3个元素突然变绿.
有任何想法吗?
解决方法
这似乎是由于个别浏览器选择处理未访问链接的方式. W3规范(
http://www.w3.org/TR/CSS2/selector.html#link-pseudo-classes)规定:
The :link pseudo-class applies for links that have not yet been visited.
Chrome(和Opera)将href =“”和href视为当前网址,从而将其视为已访问. Firefox和IE将href =“”和href视为未访问,直到您实际点击它们为止.
IE(未点击):
Chrome(未选中):
为了支持这个逻辑,添加第五个链接与href =“https://stackoverflow.com/questions/30371788/strange-results-with-an-empty-href-and-the-link-pseudo-class”(此页面)将导致Chrome中的红色链接(类似于href =“”和href链接),因为它会将该页面视为已访问.
a { color: red; } a:link { color: green; }
<a href="#">one</a> <a href="">two</a> <a href>three</a> <a>four</a> <a href="https://stackoverflow.com/questions/30371788/strange-results-with-an-empty-href-and-the-link-pseudo-class">five</a> <a href="unvisited">six</a>