CSS: Hover

The :hover pseudo-class in CSS is used to apply a style to an element when a user places their mouse cursor over it. It’s a way to add interactive feedback and visual cues to your web elements, enhancing the user experience. Here’s a basic example:

CSS

button:hover {
  background-color: lightblue;
}

In this example, a button will change its background color to light blue when the mouse hovers over it