Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|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
17  
Your CSS formatting is crazy! – Rich Bradshaw Mar 27 '11 at 21:03
1  
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

5 Answers

up vote 11 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.

share|improve this answer
4  
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
Seems like Chrome doesn't support it even in 2013? – MikkoP Mar 24 at 12:53

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: '| ';
}
share|improve this answer
4  
I love that last CSS rule. +1 – Matt Clarkson Mar 22 '12 at 14:57
ur a fucking champ! Thanks man! :) – Nicholas Oct 20 '12 at 7:33
This is actually the only way to get it to work as far back as IE8 (sorry, no cheetos for IE7 and earlier). li:not(:first-child):before is a little bit too scary for the older versions of Internet Explorer to tackle. – Sandy Gifford Oct 22 '12 at 16:39
The + operator is a great solution! – Miika L. Apr 18 at 8:29

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.

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

Use need use Jquery fot fix it, like below:

$('#div > *:not(.classWithout)').addClass('newclass');

and Css:

.newclass{Your css}
share|improve this answer

Every things seems correct. You might want to use the following css selector instead of what you used.

`ul > li:not(:last-child):after`
share|improve this answer
Thanks, this is similar to what I used in the end: li:not(:first-child):before. See the comment in the answered post. – Matt Clarkson 2 days ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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