I\'m going to have an exam tomorrow and I\'m trying to understand the meaning and the answer of
Selector grouping and Contextual Selector
While I searched
Basically what you looking at is the following.
for
a. Selector grouping example
td, th, li { property: value; }
what the above is saying that you want to have the same value for the same property for all td,th, and li
b. Contextual Selector example
table p { property: value; }
this one is saying that you want to set the value for so whenever you have a tags that belongs to tags
in a , then it will get effected.