I have a list of elements:

<ul>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
    <li>Four</li>
    <li>Five</li>
</ul>

And styled like this:

ul
{
    list-style-type:   none;
    text-align:        center;
}
li
{
    display:           inline;
}
li:not(:last-child):after
{
    content:           ' |';
}

Outputs One | Two | Three | Four | Five | instead of One | Two | Three | Four | Five

Anyone know how to CSS select all but the last element?

You can see the definition of the :not() selector here

link|improve this question

This behaviour seems to be a bug in Chrome 10. It works for me in Firefox 3.5. – duri Mar 27 '11 at 14:56
5  
Your CSS formatting is crazy! – Rich Bradshaw Mar 27 '11 at 21:03
Haha, cheers Rich. Best way to get semantic HTML I find is hammer the CSS to get the display you need from the same HTML content. Thats the way I like to work, anyhow. – Matt Clarkson Mar 30 '11 at 22:41
feedback

3 Answers

up vote 4 down vote accepted

Your example as written works perfectly in Chrome 11 for me. Perhaps your browser just doesn't support the :not() selector?

You may need to use JavaScript or similar to accomplish this cross-browser. jQuery implements :not() in its selector API.

link|improve this answer
2  
I solved this by doing li:not(:first-child):before and adding the vertical bar before. I was working with the stable version of Chrome that doesn't seem to support last-child. The Canary build does. Thanks for the answer tho. – Matt Clarkson Mar 30 '11 at 22:40
feedback

If it's a problem with the not selector, you can set all of them and override the last one

li:after
{
  content: ' |';
}
li:last-child:after
{
  content: '';
}

or if you can use before, no need for last-child

li+li:before
{
  content: '| ';
}
link|improve this answer
I love that last CSS rule. +1 – Matt Clarkson Mar 22 at 14:57
feedback

Your sample does not work in IE for me, you have to specify Doctype header in your document to render your page in standard way in IE to use the content CSS property:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<head>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<html>

<ul>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
    <li>Four</li>
    <li>Five</li>
</ul>

</html>

Second way is to use CSS 3 selectors

li:not(:last-of-type):after
{
    content:           " |";
}

But you still need to specify Doctype

And third way is to use JQuery with some script like following:

<script type="text/javascript" src="jquery-1.4.1.js"></script>
<link href="style2.css" rel="stylesheet" type="text/css">
</head>
<html>

<ul>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
    <li>Four</li>
    <li>Five</li>
</ul>

<script type="text/javascript">
  $(document).ready(function () {
      $("li:not(:last)").append(" | ");
    });
</script>

Advantage of third way is that you dont have to specify doctype and jQuery will take care of compatibility.

link|improve this answer
1  
<!DOCTYPE html> is the new HTML5 standard. – Matt Clarkson Mar 30 '11 at 22:37
feedback

Your Answer

 
or
required, but never shown

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