Developer reference

CSS Selectors Cheatsheet

CSS selectors for classes, IDs, attributes, descendants, and states.

Class

Select elements with a class.

.button

ID

Select one element by ID.

#main

Attribute

Select by attribute value.

input[type="search"]

State

Style hover state.

a:hover

Related tools

Related categories