Problem Statement
Which selector targets only direct child elements?
Explanation
The child selector (>) matches only the **direct** children of an element, not deeper descendants.
Code Solution
SolutionRead Only
.menu > li { padding: 10px; }Get the Preplance app for a seamless learning experience. Practice offline, get daily streaks, and stay ahead with real-time interview updates.
Get it on
Google Play
4.9/5 Rating on Store
CSS · Interview Question
Detailed answer, explanation and code for this interview question. Ideal for CSS interview preparation, coding rounds and viva questions.
Which selector targets only direct child elements?
.menu > li { padding: 10px; }
Master CSS with our complete collection of questions, tutorials and guides.