所以我想在有人访问的每个链接上打勾。这是基本的 CSS,但不知何故:visited
只会接受color
而没有其他规则。我已经在 Mac 上的最新 Chrome 和 FF 以及 MS Edge 14 上对其进行了测试——同样的行为。
这里也是一个用于测试的代码笔
<a href="https://gab3.de">gab3.de</a>
<br>
<a href="https://gabrielw.de">gabrielw.de</a>
a:visited {
color: #ccc;
text-decoration: line-through;
}
a:visited:before {
content: "\2713 ";
}
所以有什么问题?