css selector select all div children code example
Example 1: css everything under element
#applyCSS > * {
/* Your style */
}
Example 2: css affect all child elements
div.class, div.class > * {
// CSS Property
}
#applyCSS > * {
/* Your style */
}
div.class, div.class > * {
// CSS Property
}