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

HTML How to Make a Website CSS: Cascading Style Sheets Use ID Selectors

How come the list items don't have bullet points in the video? But on mine they do... Am I missing something?

Unless I use the following rule:

ul { list-style-type: none; }

Then my list items are all bullet points, but I notice that in the videos Nick does not have this. Have I missed a step?

Thanks

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey there,

Do you have normalize.css linked in your HTML?

If you do, then it may be that this is an older video and the normalize.css version being used still has the list-style rule. As of normalize.css v3, that rule was removed from the normalize.css file. So, you'd be using the newer versions as opposed to the video.

Hope that clears it up for you. :) :dizzy: