Answers for "how to alternate background colour in html div elements in css"

CSS
1

how to alternate background colour in html div elements in 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;
}
Posted by: Guest on July-21-2021

Code answers related to "how to alternate background colour in html div elements in css"

Browse Popular Code Answers by Language