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 trialKatherine Liu
4,668 PointsPseudo-class first-child CSS
This is the question:
Select the li that is the first child of the ul. Set the color to white and background color to black.
and this is my code
ul:first-child {
color: white;
background: black;
}
I must be doing something wrong, but I looked it over multiple times and compared them to the video examples.
The html code looks like this
<body>
<ul>
<li>First child of ul</li>
<li>Second child</li>
<li>Third child</li>
<li>Fourth child</li>
<li>Last child of ul</li>
</ul>
</body>
This is the error message:
Please check your selector, make sure background-color is set to 'black'.
I tried it with hexidecimal and changed background to background-color, but I still get an error
2 Answers
Nicole H
2,981 PointsIt looks like you are targeting the ul only instead of the first li in the ul.
Sarah Armstrong
9,995 PointsHi Katherine, you want the first child that is a li. :first-child should be applied to the li, not the ul.
Katherine Liu
4,668 PointsKatherine Liu
4,668 Pointsoh wow, I guess I misunderstood the whole concept of pseudo-classes. Thanks!