Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,626 Pointspadding and margin
Why he added both? "padding-bottom" in "title" and "margin-top" in "h1" Isn't only "margin-top" in "h1" enough?
1 Answer

Max Senden
23,153 PointsHi Aakash,
By setting the padding-bottom Guil is able to push the border-bottom further down the text 'Journey Through the Sierra Nevade Mountains'. If he would not set a padding-bottom value the border would stick right below the text.
Next time you come across something like this that makes you question why something is happening type each line of code separately and preview the results in the browser. See what happens when you type each individual line of code and try to understand why it does what it does.
Good luck! Max
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,626 PointsAakash Srivastav
Full Stack JavaScript Techdegree Student 11,626 PointsThanks a lot :)