css change color of all child elements code example
Example 1: css affect all child elements
div.class, div.class > * {
// CSS Property
}
Example 2: alternate color css
table tr:nth-child(odd) td{
...
}
table tr:nth-child(even) td{
...
}
Example 3: css all children of type
/* Affects all a inside the #nav element: */
#nav a{
color: black;
}