Problem Statement
Which selector targets all <span> elements inside <div> elements?
Explanation
The selector 'div span' selects every span element that is nested anywhere inside a div, regardless of the depth. It helps style inner elements within containers.
Code Solution
SolutionRead Only
div span { color: red; }Practice Sets
This question appears in the following practice sets:
