CSS Link Hover

The :hover pseudo-class changes style when the mouse is over a link.

Preview

Code

<style>
a{
color:#2563eb;
text-decoration:none;
}

a:hover{
color:#ef4444;
}
</style>

<a href="#">Hover over this link</a>

More CSS Links Examples (7)