Keywords added to selectors to style selected elements in a specific state. :hover is probably one of the most common examples.
:hover
selector:pseudo-class { property: value; }
a:hover { color: red; }
Source