the below css doesnt works on below given html. The purpose is to apply the css on the last 'li', but it doesnt.

#refundReasonMenu #nav li:last-child
{
    border-bottom: 1px solid #b5b5b5;
}

and html looks like

<div id="refundReasonMenu">
    <ul id="nav">
        <li><a id="abc" href="#">abcde</a></li>
        <li><a id="def" href="#">xyz</a></li>
    </ul>
</div>
link|improve this question

61% accept rate
feedback

9 Answers

up vote 79 down vote accepted

The :last-child pseudoclass still cannot be reliably used across browsers. In particular, Internet Explorer (6 and 7), and Safari definitely don't support it, although Internet Explorer 7 and Safari 3 do support :first-child, curiously.

Your best bet is to explicitly add a last-child (or similar) class to that item, and apply li.last-child instead.

link|improve this answer
That can also be what causes it, yeah :) – changelog Aug 18 '09 at 11:52
IIRC, IE7 doesn't support it, and first-child is sketchy. I'd go with this method of adding your own class, it's much more reliable. – Kezzer Aug 18 '09 at 11:53
27  
IE8 doesn't support :last-child either. And it's not that curious. :first-child is a CSS2 pseudo-class, :last-child a CSS3 pseudo-class. – mercator Aug 18 '09 at 12:18
41  
last-child works in all the modern browsers, which means, of course, it does not work in any version of IE. – Rob Apr 8 '10 at 21:25
7  
fyi, IE 9 supports :last-child. – koiyu Jan 4 at 11:28
show 1 more comment
feedback

Another solution that might work for you is to reverse the relationship. So you would set the border for all list items. You would then use first-child to eliminate the border for the first item. The first-child is statically supported in all browsers (meaning it can't be added dynamically through other code, but first-child is a CSS2 selector, whereas last-child was added in the CSS3 specification)

Note: This only works the way you intended if you only have 2 items in the list like your example. Any 3rd item and on will have borders applied to them.

link|improve this answer
3  
+1 This is a decent and practical alternative. – Zack The Human Feb 10 '11 at 22:31
+1 for out of the box thinking :-) I just converted my last-child elements to first-child and changed by border-right to border-left for menu separators. Now IE8 likes my css. – Scott B Apr 8 '11 at 14:23
Thank you fine sirs for the +1's :) – Branden Silva Apr 20 '11 at 6:38
feedback

If you think you can use Javascript, then since jQuery support last-child, you can use jQuery's css method and the good thing it will support almost all the browsers

Example Code:

$(function(){
   $("#nav li:last-child").css("border-bottom","1px solid #b5b5b5")
})

You can find more info about here : http://api.jquery.com/css/#css2

link|improve this answer
5  
Talk about dirty. – md1337 Aug 24 '10 at 17:15
51  
Wayyy better to do something like $("#nav li:last-child").addClass('last-child') so you can keep your styling in your stylesheets. – jason Oct 11 '10 at 17:58
Perfect trick. thanks – Manoj Kumar Jan 6 '11 at 12:34
This is cleaner than the first solution since it is handled automatically. But I agree with jason, too. – Josh M. Oct 26 '11 at 19:35
1  
Actually, IE7 doesn't load a class that has both div:last-child and div.last-child. It appears that it considers the :last-child syntax to be invalid and any class with that pseudo-selector won't be applied. – Josh M. Oct 26 '11 at 21:17
show 1 more comment
feedback

If the number of list items is fixed you could simply use the adjacent selector, e.g. if you only had three <li> elements, you would select the last <li> with:

#nav li+li+li {
    border-bottom: 1px solid #b5b5b5;
}
link|improve this answer
1  
Your selector is wrong. li + #nav li selects li inside #nav that comes after li. Your selector should simply be #nav li + li + li. – BoltClock Jan 20 at 21:50
2BoltClock: thanks, fixed! – ccpizza Jan 20 at 22:50
That's nifty. Works fine in IE8, however not in IE7. – Mateng Jan 31 at 16:25
Works for me in IE7! nice trick! – boobyWomack Feb 3 at 10:24
feedback

If you find yourself frequently wanting CSS3 selectors, you can always use the selectivizr library on your site:

http://selectivizr.com/

It's a JS script that adds support for almost all of the CSS3 selectors to browsers that wouldn't otherwise support them.

Throw it into your <head> tag with an IE conditional:

<!--[if (gte IE 6)&(lte IE 8)]>
  <script src="/js/selectivizr-min.js" type="text/javascript"></script>
<![endif]-->
link|improve this answer
feedback

last-child pseudo class does not work in IE

CSS Compatibility and Internet Explorer

IE7 CSS Selectors: How they fail

link|improve this answer
Wrong, it works on IE >= 7 – changelog Aug 18 '09 at 11:53
14  
No, it won't work in IE 7 – rahul Aug 18 '09 at 11:55
feedback

It's hard to say without seeing the rest of your CSS, but try adding !important in front of the border color, to make it like so:

#refundReasonMenu #nav li:last-child
{
  border-bottom: 1px solid #b5b5b5 !important;
}
link|improve this answer
feedback

As an alternative to using a class you could use a detailed list, setting the child dt elements to have one style and the child dd elements to have another. Your example would become:

#refundReasonMenu #nav li:dd
{
  border-bottom: 1px solid #b5b5b5;
}

html:

<div id="refundReasonMenu">
  <dl id="nav">
        <dt><a id="abc" href="#">abcde</a></dt>
        <dd><a id="def" href="#">xyz</a></dd>
  </dl>
</div>

Neither method is better than the other and it is just down to personal preference.

link|improve this answer
feedback

Another way to do it is using the last-child selector in jQuery and then use the .css() method. Be weary though because some people are still in the stone age using JavaScript disabled browsers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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