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 Styling Web Pages and Navigation Style the Portfolio

disheng wang
disheng wang
5,422 Points

#gallery margin and padding

I was watching the lecture 6 first video, when nick write this in his main.css file:

#gallery {
  margin: 0;
  padding: 0;
  list-style: none;
}

I do not quite understand why do we need to set margin and padding to zero. I did comment those and see the differents, the ul tag is gone, but i want to know the purpose of doing this thanks.

1 Answer

Birte Müller
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Birte Müller
Front End Web Development Techdegree Graduate 16,026 Points

If you check out this section in the developer tools, you'll notice that some margin and padding have been defined in the normalize.css By setting margin and padding to zero in main.css you'll overwrite them so they fit your layout.