我正在使用引导程序。
引导程序定义
a:hover, a:focus {
color: #005580;
text-decoration: underline;
}
我有这个链接/CSS-classes
<a class="green" href="#">green text</a>
<a class="yellow" href="#">yellow text</a>
如何禁用胡佛颜色?
我希望绿色链接保持绿色,黄色链接保持黄色,而不覆盖每个班级的 :hover ?(这个问题不是强制性的,依赖于引导程序)。
我需要类似的东西
a:hover, a:focus {
color: @nonhoovercolor;
}
我认为
.yellow {
color: yellow !important;
}
不是一个好习惯。