Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to skip first child?

I have a ul with 4 li in it:

<div id="someid">
    <ul>
       <li>1st</li>
       <li>2nd</li>
       <li>3rd</li>
       <li>4th</li>
    </ul>
</div>

I'm setting a style for these li elements:

#someid ul li{
      font-weight: bold;
}

Now I want exclude the first li. How can I do it?

share|improve this question
In theory I agree that this should be closed as an exact duplicate, but there is a better cross browser solution than the one given in the linked question. I think it would have been in the interest of StackOverflow to leave it open so other answers can be given. – My Head Hurts Jan 23 '12 at 20:16
@My Head Hurts : li+li? Please post the answer in the linked topic. Though it's OK with his example but not with the title of his question. – FelipeAls Jan 23 '12 at 20:24
@My Head Hurts: I posted it as a comment. Should I turn it into an answer? – BoltClock Jan 23 '12 at 20:28
@BoltClock Yeah, I think that would be a good idea – My Head Hurts Jan 23 '12 at 20:45
1  
@MyHeadHurts: Done – BoltClock Jan 23 '12 at 21:07
show 1 more comment

marked as duplicate by Phrogz, BoltClock Jan 23 '12 at 20:10

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 2 down vote accepted
#someid ul li:not(:first-of-type) {
      font-weight: bold;
}

or if that doesn't work in ancient browsers:

#someid ul li {
      font-weight: bold;
}
#someid ul li:first-child {
      font-weight: normal;
}
share|improve this answer

Use the CSS first-child selector:

#someid ul li:first-child { 
    font-weight: normal;
}
share|improve this answer
about your comment on W3Schools in a deleted question: w3fools.com should answer your question :) – FelipeAls Jan 23 '12 at 20:26
@Felipe excellent – paislee Jan 23 '12 at 20:38

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