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 trialCarol Heal
1,009 Pointsstage 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
Samuel Lopez
Front End Web Development Techdegree Student 13,960 PointsIn 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).
Carol Heal
1,009 PointsThank you have been a big help
Samuel Lopez
Front End Web Development Techdegree Student 13,960 PointsYou are very welcome!