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 trialLorenzo Dossi
3,116 PointsA little silly layout problem
I would like to have the text of the entire site properly aligned with a total horizontal margin of about 20 % and a background-color of the header and footer that covers horizontally all the width of the page
this is the css
2 Answers
Erik Nuber
20,629 PointsYou can achieve this with a wrapper
<header></header>
<div id="wrapper"></div>
<footer></footer>
* {
box-sizing: border-box;
}
header, footer {
width: 100%;
}
#wrapper {
width: 100%;
padding: 0 20%;
}
Cindy Lea
Courses Plus Student 6,497 PointsAll the sections you want different needs a class name & the areas in common can share the css code.
Lorenzo Dossi
3,116 PointsLorenzo Dossi
3,116 PointsTHANKS!