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 trialAakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 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,177 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,638 PointsAakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 PointsThanks a lot :)