在我的网站上,大多数链接(除了导航栏中的链接)在单击或右键单击时变为白色。例如。 http://wisderm.com/ingredients/Dead+Sea
尽管我设置了#6f5499的链接,这是一种紫色:http://www.color-hex.com/color/6f5499,因此:
a, a:hover, a:focus, a:active { color: #6f5499; }
发生了什么?
答案 0 :(得分:3)
问题是下面的CSS代码。逗号后面的规则(,
)定位网页的每个链接,而不是alert
内的链接
.alert a:hover, a:focus { color: white; }
将其更改为
.alert a:hover, .alert a:focus { color: white; }