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

HTML How to Make a Website CSS: Cascading Style Sheets Style the Basic Elements

what is the problem

a { text-decoration: none;

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

what is my problem

Kristopher Van Sant
Kristopher Van Sant
Courses Plus Student 18,830 Points

Hey there Daniel! I add three back-ticks before your code and three back-ticks after your code, this allows your code to show better here in the forum thanks to Markdown :)

1 Answer

Maximiliane Quel
PLUS
Maximiliane Quel
Courses Plus Student 55,489 Points

you are missing a closing curly brace at the end of your first statement. and wrapper is also an id so you need to start your selector with #:

a { text-decoration: none; }

#wrapper {
  width: 940px;
  margin: 0 auto;
}
Maximiliane Quel
Maximiliane Quel
Courses Plus Student 55,489 Points

and also the thing about having to use max-width. since, your question is duplicated I have not added the code again. :0)