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 trialzabi kadamzadeh
5,745 PointsPadding
After doing the maths, the padding is not actually 5% of the max-width on each side. Am I missing something? Thanks :)
1 Answer
Kevin Korte
28,149 PointsSure, it's going to be 5% of the width of the browser window.
So for instance, my browser body is 1277 px. My inspector shows I have a padding of 63.844px.
1277 * 0.05 = 63.85
Which would be correct.
zabi kadamzadeh
5,745 Pointszabi kadamzadeh
5,745 PointsThanks, Kevin.