链接悬停颜色不会改变,但访问的链接有效吗?

时间:2014-10-23 17:01:27

标签: css

所以我的链接颜色正确,我的链接在访问时变成了正确的颜色,但我的链接没有变成他们在我们上面时应该使用的绿色?

.header p a{
color: white !important;
}

.header p a:visited{
color: #FF859C !important;
}

.header p a:hover {
color: #BCD955 !imporant;
}

1 个答案:

答案 0 :(得分:1)

您对!important修饰符有点过分热心,由于:visited:hover具有相同的特异性,:visited因为首先被宣布而胜出

删除所有!important修饰符,它将按预期工作。