There are some options below that you using CSS by modifying the color to white can contribute.
If you want to change the state to give color in some link through the behavior of the mouse, use:
a:link {
color: #;
}
/* Quando entra no no navegar carrega a tela a cor fica "00FF00" */
a:visited {
color: #00FF00;
}
/* Quando passa o mouse por cima a cor fica rosa */
a:hover {
color: #FF00FF;
}
/* Quando aperta o link a cor passa pra azul escuro */
a:active {
color: #0000FF;
}
You can also use these mouse events to add an underline below the word:
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
You can change the background of the example word:
a:link {
background-color: #B2FF99;
}
a:visited {
background-color: #FFFF85;
}
a:hover {
background-color: #FF704D;
}
a:active {
background-color: #FF704D;
}