Problem Statement
Which selector selects all <p> elements in a document?
Explanation
The element selector 'p' is used to target all paragraph elements in the document. It applies the defined style to every <p> tag on the page.
Code Solution
SolutionRead Only
p { color: blue; }Practice Sets
This question appears in the following practice sets:
