I am reviewing some code, and I am seeing something that doesn't make sense to me.
I am seeing css where the selector is
.panel > * {
/* css code here */
}
My understanding is this gives me all the children of my panel class, and lets me edit their css. However, why wouldn't I just use the following instead?
.panel > {
/* css code here */
}
Isn't the * redundant in the first code example?