
Shobha
The best way to predict the future is to invent it
What is the hover effect in CSS?
The hover effect is a visual change applied to an element when a user points to it with a cursor. It is implemented using the :hover pseudo-class. For example:
button:hover {
background-color: blue;
color: white;
}
button:hover {
background-color: blue;
color: white;
}