css - How can i disable the bootstrap hover color for links -


hi i'm using bootstrap.

bootstrap defines

a:hover, a:focus {     color: #005580;     text-decoration: underline; } 

i have links / css-classes

<a class="green" href="#">green text</a> <a class="yellow" href="#">yellow text</a> 

how can disable hoover color?

i want green links stay green , yellow ones yellow, without overriding :hover every single class? (this question not mandatory dependent bootstrap).

i need like

a:hover, a:focus {     color: @nonhoovercolor; } 

and think

.yellow {     color: yellow !important; } 

is not practice

if cares ended with:

a {     color: inherit; } 

Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -