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 Style the Basic Elements

Hi! What I did wrong?

Help me please!

css/main.css
a {text-decoration: none}

#wrapper {
   max-width: 940px;
   margin: 0 auto;
 #Logo {
   text-align: center;
  }

2 Answers

wrapper is not closed , and a semi-colon is missing after text-decoration none.

Thank you Yaroslav! :) Do you speak Russian? Add me on Skype please (memberl)

Joe Dayvie
Joe Dayvie
11,956 Points

Lidiya,

I am not sure what you are trying to do; however, I see that you do not have the semi-colon after none for the text-decoration. I also notice that your ID Logo is capital L and not lowercase. Names are usually all lowercase (except when we camelCase), so maybe that is it too?

Joe

Thank you Joe! I forgot close one of selectors. (wrapper). That's way it did not work.