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 trial

CSS CSS Selectors Advanced Selectors :nth Pseudo-Class Challenge

Angus Eliott
Angus Eliott
3,793 Points

Code problem? or bug?

what is wrong? is there something wrong with my code? or is there somthign wrong with the website? the error is: Oops! Looks like task one is no longer passing. with a "go to task one" button to the right and get help and recheck work.

/* Write the CSS in the media query below */

@media (min-width: 607px) {
  img:nth-child(3n+4) {
    float: left;  
  }
}

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! It's a code problem but you're fairly close here. In the first task you are asked to target the image and float left, which you clearly did just fine so that you made it to the next step. At the next step you are asked to make an additional rule. This means that the first rule you typed in from task one should not be altered. The only problem with the code that you have for the second rule is that it's floating left. Not clearing left. Try again with these hints in mind! :sparkles: