First, I undertand that app-root{}
represents the HTML tag <app-root></app-root>
.
I have seen this: wildcard * in CSS for classes, but I still dont't understand.
Why would one ever use app-root * {}?
I have seen it being used on this open-source project.
What difference does it have if you use
app-root * {}
rather than app-root{}
in your styles file in angular?
EDIT: Changed app-root*{}
to app-root * {}
to more accurately represent the question.