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 do I select the “last child” with a specific class name in CSS?

As the title says, i want to adress css rules to the last element of a certain type which has a certain class. The following code works perfectly:

div:last-of-type { margin-right:0; }

but i want something like

div.class:last-of-type { margin-right:0; }

How to do those things ?

share|improve this question

marked as duplicate by Jukka K. Korpela, David Thomas, Kjuly, alestanis, arshajii Nov 4 '12 at 13:01

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.

3 Answers

Unfortunately finding the last .class is not possible with last-of-type.

Edit: To actually add something constructive to this answer, you could fallback to JavaScript to locate this selector, or revise your markup/CSS. Whilst I have found myself in the situation that last-of-type for a class selector would be useful, it's nothing that cannot be worked around with a little more thought.

share|improve this answer
Yes, using :last-of-type with a class selector alone is very unintuitive; it is best used with a type selector unless you really want the last of any type to have that class. – BoltClock Nov 3 '12 at 18:04
A possible jQuery fallback if you really do not want to add extra classes manually: $('.class').last().addClass('last'); – fncombo Nov 3 '12 at 18:19
@amustill I totally agree, but in some cases you have no possibility to change the markup (add a class, put a div around something) because your client works with a shitty CMS that has no possility to create or change DOM stuff. This is the cruel reality. – Panique Nov 3 '12 at 18:34

To my big surprise, this is possible in Firefox 16:

.teaser-box:first-of-type { margin-left:15px; }

Problem solved.

share|improve this answer
That's either because your .teaser-box is coincidentally of a different element type and not a div, or it does not share the same parent as your other classes or divs. It has nothing to do with the class. – BoltClock Nov 3 '12 at 23:39
@panique: really? Proof, please. – David Thomas Nov 3 '12 at 23:49
The result is: This rule edits the first element of a group IF this element has a certain class. It's not what i really thought it does. Here's my little experiment: jsfiddle.net/panique/s7dJG/3 – Panique Nov 4 '12 at 21:45

Make the nomargin a css class, and you can change it easily with jQuery:

jQuery('div.nomargin:last').css({
    color:'black',
    background:'white'})
share|improve this answer
jQuery is not CSS. – Jukka K. Korpela Nov 3 '12 at 18:02
1  
@JukkaK.Korpela Well, but in real life it's a possible workaround that will fit your client's need. I like the solution. – Panique Nov 3 '12 at 18:31

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