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>
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>