Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to use CSS pseudo-classes on list items?

I'd expect the following to produce a list of alternating colors, but instead I get a list of blue items:

<html>
    <head>
        <style>
            li { color: blue }
            li:odd { color:green }
            li:even { color:red }
        </style>
    </head>
    <body>
        <ul>
            <li>ho</li>
            <li>ho</li>
            <li>ho</li>
            <li>ho</li>
            <li>ho</li>
        </ul>
    </body>
</html>
share|improve this question
3  
Since it's pretty likely you use it and its general basis in CSS syntax, you might be thinking of the jQuery :even/:odd selectors. – Su' Feb 22 '11 at 16:21

5 Answers

up vote 119 down vote accepted

http://jsfiddle.net/thirtydot/K3TuN/637/

CSS:

li {
    color: blue;
}
li:nth-child(odd) {
    color: green;
}
li:nth-child(even) {
    color: red;
}

HTML:

<ul>
    <li>ho</li>
    <li>ho</li>
    <li>ho</li>
    <li>ho</li>
    <li>ho</li>
</ul>
share|improve this answer
10  
Just a note perhaps: nth-child isn't supported by IE 8 and below. – MEM Sep 27 '12 at 10:14
You can use the Selectivzr polyfill if you need to support IE8... and IE6/7 as well. – Ricardo Apr 5 at 18:29
Just confirmed that even with Selectivizr :nth-child(odd/even) does not work in IE8. – Ricardo Apr 5 at 18:46
+1 for data and color choice – Jacob Raccuia 2 days ago

The problem with your CSS lies with the syntax of your pseudo-classes.

The even and odd pseudo-classes should be:

li:nth-child(even) {
    color:green;
}

and

li:nth-child(odd) {
    color:red;
}

Demo: http://jsfiddle.net/q76qS/5/

share|improve this answer

Use this:

li { color:blue; }
li:nth-child(odd) { color:green; }
li:nth-child(even) { color:red; }

See here for info on browser support: http://kimblim.dk/css-tests/selectors/

share|improve this answer

To make it a bit more exciting, here’s checkerboard:

tr.class:nth-child(even) {background: #EEE}
tr.class:nth-child(odd) {background: #FFF}
share|improve this answer
Not sure this does what you think, or is relevant to the question – Alison Jun 7 at 9:14

add classes via Jquery

jQuery("li:odd").addClass("odd"); jQuery("li:even").addClass("even");

and use css:

.odd {float:left !important;} .even {float:right !important;}

share|improve this answer
1  
Not sure how any of this relates to the question... – BoltClock Jun 7 at 5:33

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.