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 Make a CSS Image Gallery

Code Challenge Margin error

I'm pretty sure I have this right, but I obviously don't. I have to have 0 margins, padding, and no list style. It says all sides must have 0 margins, I tried {0 0 0} and {0 auto} and came back with null. Help me out? This is what I have right now.

gallary { margin: 0; padding: 0; list-style: none;}

3 Answers

THe problem is the element. If it's a class, you need a period before it. If it's an ID, you need a # before it. It might also be spelled incorrectly. It might be '.gallery' or '#gallery'.

Are you making sure you're using the right id or class selector? Like you have "gallary" instead of "gallery". Also, gallery isn't preceded with a '.' for class selecting or '#' for ID selecting. Otherwise, you usually use #gallery {margin: 0;} to remove margins from all sides.

Had the # but I spelled "gallery" wrong. Face palmed super hard. Thanks.