0
How can I change the link colour
It seems as if the browser underlines the link word and assigns its own colour
3 Respuestas
+ 2
a:link{
color: black;
text-decoration: none;
}
a:hover{
color: blue;
text-decoration: none;
}
a:visited{
color: purple;
text-decoration: none;
}
a:active{
color: red;
text-decoration: none;
}
Try this I have also add some extra... like hover , visited, active.
+ 1
welcome.. ask if you have any doubsts
0
Thanks so much