- Web design
- CSS
- Pseudo class
- here
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.
<style> a: hover { opacity: 0.8; } </style> <a href="/"> Hover glowing link</a>
Hover your mouse over it and it will glow.