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 trial

CSS CSS Layout Basics Getting Started with CSS Layout Centering Page Content and Creating a Full-width Header

Amber Cook
Amber Cook
4,739 Points

Why is the text-align property in the main-footer element?

Why/how does the text-align property align the content in the entire page when the property was only placed in the main-footer element? And why wouldn't you place the text-align property inside of the container element instead?

1 Answer

Emmanuel Molina
Emmanuel Molina
9,268 Points

The text-align property only center the footer text. It's the .container {width: 70%; margin: 0 auto;} who centers the other parts. And as its name says it's "text align", meaning if you have something else than text element it won't work. The footer has only text.