A Web Design Community curated by Chris Coyier

Code Snippets Gallery

Code Snippets > CSS > CSS3 Zebra Striping a Table Submit one!

CSS3 Zebra Striping a Table

tbody tr:nth-child(odd) {
   background-color: #ccc;
}

4 Responses

  1. great certainly saved me some time searching

  2. Dyllon says:

    this didn’t work well for me, but the PHP one worked great.

  3. Artem says:

    Cant understand, how it works…

  4. mike ilz says:

    @Dyllon and @Artem, here is a simple demo explaining how to use this code, and a live example of it being used.

    http://webdesignandsuch.com/2010/08/add-zebra-striping-to-a-table-with-css3/

Leave a Comment

Remember:
  • Be nice.
  • Wrap multiline code in <pre> and <code> tags and escape it first (turn <'s into &lt;'s).
  • You may use regular HTML stuff like <a href="">, <em>, and <strong>
* This website may or may not contain any actual CSS or Tricks.