Problem Statement
What does the selector '.card p' target?
Explanation
A descendant selector selects all matching elements inside a parent, regardless of depth. '.card p' applies to all <p> within .card at any level.
Code Solution
SolutionRead Only
.card p { color: gray; }