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 How to Make a Website Styling Web Pages and Navigation Create a Horizontal List of Links

stage 6 styling webpages and navigation

on first code challenge of stage 6 it says to select unordered list and reset margins. But there is no ul there should I be adding the code to the css

2 Answers

In CSS "selecting" means creating a new rule for a particular element.

For instance:

p { color: black; }

In that example I selected p, now you go ahead an select (create) a rule that resets the margins for an unordered list (ul).

Thank you have been a big help

You are very welcome!