Problem Statement
Which pseudo-class applies when a user hovers over an element?
Explanation
`:hover` triggers when the user points to an element (commonly used for interactive buttons). Example: `.btn:hover { background: #0066cc; }`.
Code Solution
SolutionRead Only
.btn:hover { background-color: darkblue; }