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 trialLiam Hayes
Full Stack JavaScript Techdegree Student 13,116 PointsCould someone explain this code to me? margin: 0 auto;
Hi there :)
When it comes to this code
margin: 0 auto;
What does the 0 do and what does the auto do?
Supposedly this can be used to center some stuff on the page.
I watched the video but I had a bit of trouble understanding this part.
Thank you very much :)
1 Answer
Gabriel Plackey
11,064 PointsMargin is the shorthand syntax for margin-top, margin-right, margin-bottom and margin-left. So the 0 is setting the margin for top and bottom to 0. So no margin on the top and bottom. The auto is for the sides, left and right. It's setting the left and right sides to auto. So it will auto add the margins to the left and right sides, centering it on the page or in it's parent container.
Liam Hayes
Full Stack JavaScript Techdegree Student 13,116 PointsLiam Hayes
Full Stack JavaScript Techdegree Student 13,116 PointsAwesome. Thank you very much man :)