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 How to Make a Website CSS: Cascading Style Sheets Center the Wrapper

Center the wrapper

Hi. I am trying to center the wrapper, but when I press preview, the pictures won't get centered.

body { background-color: turquoise;

}

a { text-decoration: none; }

wrapper {

max-width: 940 px; margin: 0 auto; }

1 Answer

Thomas Noe
Thomas Noe
12,486 Points

Hey there,

Looks like your code is almost right, but you need to make sure that you have the hash/pound-sign in front of wrapper to select the wrapper ID. Without the hash/pound-sign in front of wrapper, you're attempting to select a type or element named wrapper (as in, the same way you're selecting the body element above your current wrapper rule).

To correctly select the wrapper ID, your rule should like something like this:

#wrapper {
  max-width: 940px;
  margin: 0 auto;
}