所以我的链接颜色正确,我的链接在访问时变成了正确的颜色,但我的链接没有变成他们在我们上面时应该使用的绿色?
.header p a{
color: white !important;
}
.header p a:visited{
color: #FF859C !important;
}
.header p a:hover {
color: #BCD955 !imporant;
}
答案 0 :(得分:1)
您对!important
修饰符有点过分热心,由于:visited
和:hover
具有相同的特异性,:visited
因为首先被宣布而胜出
删除所有!important
修饰符,它将按预期工作。