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

Derrick Mull
Derrick Mull
18,518 Points

List 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
Derrick Mull
18,518 Points

Well, 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
Brandon Escalante
5,772 Points

Haha! Happened to me a few times dude.