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 trialVasyl Kozhushko
6,405 PointsPadding declaration
Why do you write padding-left: 20px; and padding-right:20px , but not padding: auto 20;
2 Answers
Chyno Deluxe
16,936 PointsYou can use shorthand when writing the padding declaration. I've never seen auto used for top and bottom tho.
#idName {
padding: 0 20px; /* TOP/BOTTOM - LEFT/RIGHT */
}
/* or */
#idName {
padding: 0 20px 0 20px; /* TOP RIGHT BOTTOM LEFT */
}
Christopher Vesti
1,622 PointsYou can't use 0 as the top and bottom padding. You have to use auto otherwise the buttons shrink down and don't match what the instructor is doing.