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
Derrick Mull
18,518 PointsList Styles Challenge 1/3
The instructions state "Remove the list item markers in the ul."
my code
li {
list-style-type:none;
}
This removes the markers, but fails the challenge with message "Check the list style type declaration in your CSS." Rewatched the video, checked w3c, am I missing something obvious here, or is it a bug?
2 Answers

Derrick Mull
18,518 PointsWell, it was simple, so disregard... the challenge wanted
ul {
list-style-type:none;
}
as the answer, and not the "li" as the selector.
{facepalm}

Brandon Escalante
5,772 PointsHaha! Happened to me a few times dude.