Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Vic Mercier
3,276 PointsWhat is the difference between a descendant and a child.
I am mixed up in the jQuery introduction
1 Answer

Ezra Siton
12,644 PointsLook at the DOM like a family tree (what the difference in family between child and descendant?)
Code example:
<section>
<div class="child-of-section descendant-of-section">
<p class="descendant-of-section">
</p>
<p class="i-am-also-descendant-of-section">
</p>
</div>
<p id="i-am-also-a-child-of-section descendant-of-section">
</p>
</section>
Related links:
- https://stackoverflow.com/questions/1182189/css-child-vs-descendant-selectors
- https://www.w3schools.com/css/css_combinators.asp
- https://www.w3schools.com/cssref/tryit.asp?filename=trycss_sel_element_gt
W3C Definitions:
- https://www.w3.org/TR/css3-selectors/#child-combinators
- https://www.w3.org/TR/css3-selectors/#descendant-combinators
Related video/course at treehouse: