+ 1
How can do hover off in css?
When the mouse leave
5 Réponses
+ 9
hanan alhinai you're welcome
+ 8
When the mouse leave or, it's not on the element, the version without hover is considered. In this example, when mouse leaves text changes its background color from yellow to red:
p {
background-color:red;
}
p:hover {
background-color:yellow;
}
+ 2
p:onmousehoverover / p:onmouseover is the only podsible way i think
+ 1
Javier Felipe Toribio thank you
0
I‘m Sarah🌹 thank you