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

Lexical Error "\u007f" (127)

After running my code through a css validator, it gave me the following message:

.heavenly, .diamond-peak, .homewood Lexical error at line 205, column 15. 
Encountered: "\u007f" (127), after : "" ; }

Can you tell me what this error means and how I can fix it?

Thanks!

.arrow {
  width: 50px;
  margin-top: 120px;
}

/* Floated Columns ------------------ */

.resorts,
.tips {
  width: 46.5%;
}

.tips {
  float: left;
}

.resorts {
  float: right;
}

.heavenly, 
.diamond-peak, 
.homewood {
  margin: 2.5%;
  width: 28.3333%;
  float: left;
}

2 Answers

Hi Elise,

You have an invisible character after this line:

float: left;

Delete it and you should be fine. Let me know if that works.

It worked! :) Thank you for your response.

Do you know where that invisible character came from?

Awesome. No, I have no idea. I have experienced the same error before and I solved it this way though.