我遇到的问题只出现在Safari和Chrome中。我在一个网站的内容中有一组链接样式,我正在处理。访问过的链接应显示为不同的颜色,并带有虚线底部边框。虽然所有其他样式都适用,但在Safari和Chrome中,访问过的链接缺少底部边框。有没有人知道webkit引擎中的一个错误导致这个或我犯了一些愚蠢的错误?代码如下:
#content a:link {
color: #b32951;
text-decoration: none;
}
#content a:visited {
color: #353535;
border-bottom: 1px dotted;
text-decoration: none;
}
#content a:hover, #content a:active {
color: #b32951;
background: #E6B5AF;
}