在审查某人的 CSS 文件时,我遇到了这一点。他是一个优秀的 CSS 设计师,所以在说任何事情之前我想看看是否有一些我没有关注的东西?
在下面的代码片段中,他似乎错误地重新定义了一些属性——即,href 上的悬停和活动状态的文本装饰和颜色属性:
.myClass
{
display: inline-block;
padding: 0 15px 10px 15px;
}
a.linkWhatsThis:link,
a.linkWhatsThis:visited,
a.linkWhatsThis:hover,
a.linkWhatsThis:active {
font-size:11px;
color: #42382c;
text-decoration: underline;
line-height:16px;
}
a.linkWhatsThis:hover,
a.linkWhatsThis:active {
color: #990000;
text-decoration: none;
}