hover pseudo-class-Introduction to CSS [CSS3 compatible]

The hover pseudo-class is a pseudo-class for setting the style when hovering over an element. Used in combination with a tag.

Hover glowing link

<style>
  a: hover {
    opacity: 0.8;
  }
</style>

<a href="/"> Hover glowing link</a>

Hover your mouse over it and it will glow.

Associated Information