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

Normalize.css no longer styling lists?

I finished the course CSS Layout Techniques and I've been trying to build practice sites for each technique.

Using the current version of normalize.css (v3), I notice it isn't styling the lists and leaves bullet points. The course files seem to be using an older version that maybe has list style code? Does anyone know if this is the case and why this has changed? Also what are you using now to fix this issue?

1 Answer

I don't believe normalize ever removed bullet points by default. You can remove them by adding some css:

ul, ol {
  list-style:none;
  padding-left:0;
}

V1 did, as I've seen this exact question come up before. I think Nick is using V1 in the video which is why it's throwing new programmers off, as their site doesn't match Nick's because of this. That's just a tidbit. You're right with your suggestion.