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! While you're at it, check out some resources Treehouse students have shared here.
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 trialMartin Bornman
Courses Plus Student 12,662 PointsPseudo class
It looks like an <h1> made its way inside the parent body. Now our :nth-child selector no longer targets the desired combination of img child elements. Replace :nth-child with the pseudo-class that only targets a specific type of child element.
My answer to this is:
img:nth-type-of(1) { clear: left; }
I get a Bummer.What am I doing wrong?
2 Answers
Alex Pamphilon
11,614 PointsTry this instead.
img:nth-of-type(1) { clear: left; }
Saskia Lund
5,673 PointsHi Martin,
you receive a bummer, because you made a syntax mistake. The correct synax for this pseudo class is a follows:
img:nth-of-type(1n) { clear: left; }
Hope it helped Saskia