CSS Selectors
Articles and talks about CSS selectors.
Featured selectors
- ::marker
The ::marker pseudo-element represents the automatically generated marker box of a list item.
- :focus-visible
Applies if the user agent determines via heuristics that the focus should be made evident.
- :not()
Represents an element that is not represented by its argument.
- :nth-child()
Represents an element that has an+b-1 siblings before it in the document tree.
- :nth-last-child()
Represents an element that has an+b-1 siblings after it in the document tree.
- *
Represents an element of any element type.