tags:

views:

50

answers:

2

How many Pseudo-classes are there in CSS? What are they?

+3  A: 

See 5.10 Pseudo-elements and pseudo-classes of the CSS2 spec.

CSS3 selectors are in Last Call status. See 6.6 Pseudo-classes, and 7 Pseudo elements.

Ewan Todd
+5  A: 

A bunch of useful ones.

I mostly use: :hover :active but :before :after and :first-child are useful too.

apphacker