how to targey everything in css code example
Example 1: css vertical align items in div
.flex-center-vertically {
display: flex;
justify-content: center;
flex-direction: column;
height: 400px;
}
Example 2: css everything under element
#applyCSS > * {
/* Your style */
}