vote up 3 vote down star

IE7 doesn't support :last-child pseudo selector. I am thinking of explicitly adding a class name to denote it as the last element but not sure how to select this element inside a css file. Anyone have any ideas on how to do this ?

flag

4 Answers

vote up 7 vote down check
.class1.class2 {color:red}

and

<div class="class1 class2"></div>

or install IE7-js and :last-child will "just work".

link|flag
Note that IE6 is broken when it comes to multiple class selectors like this. ryanbrill.com/archives/multiple-classes-in-ie/… explains in more detail and has a work around. – David Dorward May 27 at 13:16
the IE7-js library is also a work-around, and it enables first/last-child as well. I love it. – SpliFF May 28 at 1:06
vote up 0 vote down

One extra thing to note about multiple classnames is that IE6 can not handle them properly. It will only consider the last classname in the list:

.class1.class2 {color:red} => .class2 in IE6
link|flag
vote up 2 vote down

If you have

<div class="element"/>
<div class="element last"/>

You can just do

div.element
{
   // styles effect both divs
}

div.last
{
    // style will only effect the second element and overides because lower in the css
}
link|flag
vote up 0 vote down

This page has all you want to know about multiple class names

link|flag

Your Answer

Get an OpenID
or

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