Action pseudo class
:hover will apply a style when the user hovers over the element specified by the selector.
<p>Hello, hover on me to see me in red</p>
p:hover {
color: red;
}
In the browser developer tool, you can change the state of an element to test it.