naprej
  • css
  • firefox
  • html
  • javascript
  • mootools
  • mysql
  • php
  • web
28/06/2010

CSS Selectors

Css

<style>
.row:nth-child(even) {
background: #ddd;
}
.row:nth-child(odd) {
background: #eee;
}
</style>

Html

<div class='row'>Row 1</div> 
<div class='row'>Row 2</div>
<div class='row'>Row 3</div>
<div class='row'>Row 4</div>

view demo

Related Posts

CSS3 Box shadow, CSS3 Text shadow, CSS3 RGBA, CSS3 Columns, CSS3 font face, CSS3 Gradient Button
css
  • Copyright © 2009 naprej.com