Is there a way to do something like this in CSS2 (not 3)?

h2:first{bla bla;}

Thank you!

link|improve this question

Do you mean finding the first sub-element of a given type? – bosmacs Sep 1 '10 at 15:30
feedback

1 Answer

up vote 2 down vote accepted

Yup,

"The :first-child pseudo-class matches an element that is the first child element of some other element." - from http://www.w3.org/TR/CSS2/selector.html

There's also a listing of all available selectors in CSS2. Be warned though, most of these are not available in lower versions of IE

link|improve this answer
Thank you, corroded. – Francisc Sep 1 '10 at 19:57
1  
always glad to be of help :) – corroded Sep 2 '10 at 2:18
Actually, :first-child means "the first child of its parent", not "the first element of its kind". There's a draft in the CSS4 spec which would mean one could use h2:nth-match(1) (or h2:first if it brings in the jQuery equiv), but for now :first is only available in jQuery. – BoltClock Nov 8 '11 at 5:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.