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.

I am looking for a css selector that lets me select the pre-last child of list.

<ul>
     <li>1</li>
     <li>2</li>
     <li>3</li>
     <li>4</li>
     <li>5</li> <!-- select the pre last item dynamically no matter how long this list is -->
     <li>6</li>
</ul>

Static method:

ul li:nth-child(5)

Dynamic method:

ul li:last-child(-1)

which of course doesn't validate, also nth-last-child doesn't seem to provide a dynamic way.. I can fallback to javascript but I'm wondering if there is a css way I overlooked

share|improve this question
1  
It's usually called "second last". There's also another fancy word for it: "penultimate". – BoltClock Feb 10 '12 at 12:46
@BoltClock I love the word "penultimate". I'm going to go use it in a snarky Facebook update, now. – Andrew Barber Feb 10 '12 at 13:08

2 Answers

up vote 11 down vote accepted

You can use :nth-last-child(); in fact, besides :nth-last-of-type() I don't know what else you could use. I'm not sure what you mean by "dynamic", but if you mean whether the style applies to the new second last child when more children are added to the list, yes it will. Interactive fiddle.

ul li:nth-last-child(2)
share|improve this answer
Okay that works! The code interpretator (jsfiddle) didn't validate it.. Guess a bug on their side! thanks – Hedde Feb 10 '12 at 12:46
No IE7 and IE8 Support – David Allen Feb 10 '12 at 12:55
1  
@David Allen: I don't think he cares if he's already trying to use :nth-child(5) and :last-child. Comments like this should either go on the question or be kept to selves. – BoltClock Feb 10 '12 at 12:55
1  
He may not know about the no support issue. I'm just highlighting it.... I gave a answer using jQuery and I'll happy say that it wont work with users with JavaScript disable. but more people use IE7/8 than having JS diabled – David Allen Feb 10 '12 at 13:00
1  
@David, I believe the selectivrz or modernizr plugin can fix that issue, I'll have to view the docs – Hedde Feb 10 '12 at 13:04
show 4 more comments

Unless you can get PHP to label that element with a class you are better to use jQuery.

jQuery(document).ready(function () {
  $count =  jQuery("ul li").size() - 1;
  alert($count);
  jQuery("ul li:nth-child("+$count+")").css("color","red");
});
share|improve this answer
2  
It's downright annoying that jQuery doesn't implement :nth-last-child() just because John thinks nobody uses it. – BoltClock Feb 10 '12 at 12:56
I'd rather label with python ;-) ontopic: Well css seems fine this way, maybe jsfiddle also thinks nobody uses it :-) – Hedde Feb 10 '12 at 12:59
@ArgsKwargs: Strange why it wouldn't work in jsFiddle. It's up to the browser to interpret it; it doesn't have its own CSS engine. – BoltClock Feb 10 '12 at 13:00
@BoltClock don't get me wrong it does work, the code helper (color visualization) just indicates something unclosed (so I didn't even try) – Hedde Feb 10 '12 at 13:02
I don't think any of the code is unclosed. But i know what you mean about the "colour visualization" – David Allen Feb 10 '12 at 13:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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