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 Adding Pages to a Website Style New Pages

James Walton
James Walton
1,567 Points

Margin

Why are there only 3 values for the margin instead of 4?

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey James,

Margin values can have 1, 2, 3, or 4 values depending on how you are formatting them. In the short hand form margin: ...

When use use 1 value margin: 20px; it will apply that to all four sides.

When you use 2 values margin: 20px 40px; it will apply 20px to Top and Bottom & 40px to Left and Right

When you use 3 values margin: 20px 30px 40px; It will 20px to Top 30px to Left and Right & 40px to Bottom.

When you use 4 values, the order goes Top Right Bottom Left.

Hope this clears it up for you. Keep Coding! :)

James Walton
James Walton
1,567 Points

It does. Thank you so much, Jason!!