Comment alterner la couleur d'arrière-plan dans les éléments HTML Div dans CSS

/* to color odd children in parent-container with children of type div */
#parent-container > div:nth-child(odd) {
 background-color:red;
}

/* to color even children in parent-container with children of type div */
#parent-container > div:nth-child(even) {
 background-color:red;
}
Anxious Alligator