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 CSS Layout Project Column Layout with Media Queries

Is it ok to add margin-left: 150px to .container for 1150px screens to centralize the page?

Hey guys,

I followed every step that Guil made in his code, but .container { width= 80%; max-width: 1150px; } did not centralized the content, in this case I added margin-left: 150px; to .container and it centralized the content. Is it normal?

there is a snapshot of my code:
https://w.trhou.se/vil1076vun

Thanks !

1 Answer

HIDAYATULLAH ARGHANDABI
HIDAYATULLAH ARGHANDABI
21,058 Points

Your container already has a margin of 80 percent. If you want to place content in center of the container.

container{

align-content:center; }

Enjoy Coding