Menu
Advanced Selectors

CSS Pseudo-classes

States like :hover, :focus, :first-child.

1Dynamic States

Style elements when user interacts or based on tree position.

Example Code
button:hover { opacity: 0.8; }
input:focus { border-color: blue; }
li:first-child { font-weight: bold; }

Finished reading?

Mark this topic as complete to track progress.