CSS seltsam sogar Kind
tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}
Alive Albatross
tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}
li:nth-child(even) { /* Selects only even elements */
color: green;
}
li:nth-child(odd) { /* Selects only odd elements */
color: green;
}