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 trialMelbourne Hauk
Full Stack JavaScript Techdegree Student 2,286 PointsBug in the answer processing for task 3?
So after completing tasks 1 and 2 of the Code Challenge, adding the third task results in the second task being flagged as incorrect with an error message of "did you set the last-child to azure?", which I did. Am I actually doing something wrong, or is this just a bug?
/* Complete the challenge by writing CSS below */
li:first-child {
color: white;
}
li:last-child {
color: azure;
}
li:nth-child(even) {
color: dodgerblue;
}
1 Answer
KRIS NIKOLAISEN
54,971 PointsThe instructions for task 3 are to set the background color not the color
Melbourne Hauk
Full Stack JavaScript Techdegree Student 2,286 PointsThank you for the response, I actually noticed this right after posting my comment, haha. Crazy how far 1 small thing overlooked can take you down the rabbit hole.
Melbourne Hauk
Full Stack JavaScript Techdegree Student 2,286 PointsMelbourne Hauk
Full Stack JavaScript Techdegree Student 2,286 PointsSo I believe the error is occurring because the nth-child(even) is causing the last item to become dodgerblue. I attempted to switch their order in the code, and now the dodgerblue task will not register as correct because the last-child: azure is now changing the color of one the even items.