Comment supprimer la couleur bleue de liaison d'une balise en utilisant CSS
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Ankur
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
<a href="Link Here" style="color: Color Here"><b>Link Name</b></a> <!--- You dont need the bold tags btw ---!>
:link { color: #0000EE; }
:visited { color: #551A8B; }
<style>
a:link {
color: green;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: pink;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
</style>