I would like to use the following to target the last link (a) of the last ul inside my div. So this is what came to mind:

#menu ul:last-child li a {
       /*.....*/
}

I cant manually add a class to that element, and even if i wanted to do it dynamically i would still have to target the element the above way.

Any ideas why this is not working?

link|improve this question

20% accept rate
It will nice if you'll provide HTML sample – Ivan Nevostruev Nov 4 '09 at 16:18
sorry I should have attched one but i just needed ideas ... Anyway, for some inexplicable reason none of my browsers seem to respond to :last-child or :first-child. I just made it work in jQuery : $('#menu ul li a:last').css({}); – Turbodurso Nov 4 '09 at 16:25
feedback

4 Answers

I'm only guessing what your HTML is, but:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css" >
	div ul:last-child li:last-child a:last-child {
		background-color: red;
	}
</style>
</head>
<body>
<div>
	<ul><li>First list</li></ul>
	<ul><li>Second list</li></ul>
	<ul>
        <li>Item 1</li>
        <li>
            <a href="#">First Link</a>
            <a href="#">Last Link</a>
        </li>
    </ul>
</div>
</body>
</html>
link|improve this answer
feedback

If you want the last link in the last ul (assuming the link is inside a li-element), this is what you want:

#menu ul:last-child li:last-child a {
       /*.....*/
}
  • #menu returns the menu element.
  • ul:last-child returns the last ul within #menu
  • li:last-child returns the last li within that ul

Haven't tried it, but i guess this would work.

link|improve this answer
feedback

I've tested your code in safari (4.0.3) and firefox(3.5.4) and all works fine, I don't know in IE8!

Consider that this is a new pseudo-class (selector) defined in the CSS3 standard that is not completely supported from all browsers and is unsupported by the oldest browsers!

As general rule, for performance reasons, I suggest you to avoid CSS directives with more than 2 level (maximum 3 if you really need it)!

However, I think that if you don't want to apply the style directly to a tagged element, you have to find a javascript solution!

link|improve this answer
feedback

CSS last-child does not work in IE, including IE8.

It should work in all other current browsers, but if you're planning to use it on a site which needs to support IE, you'll need to work out an alternative way to do it.

This page has a full list of CSS selectors, and which browsers support them: http://quirksmode.org/css/contents.html

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.