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
Elise St Hilaire
13,358 PointsLexical 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
Amir Eskandari
9,153 PointsHi Elise,
You have an invisible character after this line:
float: left;
Delete it and you should be fine. Let me know if that works.
Elise St Hilaire
13,358 PointsIt worked! :) Thank you for your response.
Do you know where that invisible character came from?
Amir Eskandari
9,153 PointsAwesome. No, I have no idea. I have experienced the same error before and I solved it this way though.