Problem Statement
Which selector targets all paragraph elements with class 'intro'?
Explanation
The selector p.intro means: select all <p> elements that have the class 'intro'. This is basic CSS selector syntax — very common in interviews.
Code Solution
SolutionRead Only
p.intro { color: blue; }