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 trialYordan Sanchez
2,384 PointsI am doing the code challenge and the task is the following"
I am doing the code code challenge and the task is the following "Select the element with the ID gallery. Then, remove the margin, padding, and bullet points." Then, this is what I did:
gallery {
margin: 0; padding: 0; list-style: none; }
And then it is telling me that is wrong and I don't know what else to do. Please a little help. Thank You.
1 Answer
Clinton Hopgood
7,825 PointsTo refer to an element ID you need to use a #
#gallery {margin: 0; padding: 0; list-style: none; }