pseudo classes - mmedrano9438/peripheral-brain GitHub Wiki

Pseudo-class is a keyword added to a selector that specifies a special state of the selected element(s). For example, the pseudo-class :hover can be used to select a button when a user's pointer hovers over the button and this selected button can then be styled. CSS

/* Any button over which the user's pointer is hovering */ button:hover { color: blue; }