Action Pseudo-class (:hover, :active, :focus, :visited) - Element state
Table of Contents
1 - About
Action pseudo class
2 - Articles Related
3 - Example
: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;
}
4 - Management
4.1 - Dev Tool
In the browser developer tool, you can change the state of an element to test it.