reference all child items within a div 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
}