I have a page menu being generated that will be similar in structure to the following nested list:
<ul>
<li>Page 1</li>
<li>Page 2</li>
<li>
Page 3
<ul>
<li>Subpage 1</li>
<li>Subpage 2</li> <!-- Can I target ONLY this element? -->
</ul>
</li>
</ul>
Note that this list is dynamic. The number of items and number of levels are not predictable. So, something like this wouldn't be flexible enough:
/* I know this does not have great browser support - just an example */
ul > li > ul > li:last-child {
/* CSS here */
}
I realize that I could modify my server code to add a class to the last item, but I would first like to know if this is possible in CSS.
To make matters more complicated, I would like to target all major browsers along with IE 7+.
Is it possible to target the very last list item using CSS?
Basically, I need this Fiddle solved (via @Pumbaa80).