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 CSS Foundations Text, Fonts, and Lists Text Properties

broken challenge?

I'm having some trouble with the "text properties" code challenge. The challenge asked me to "remove the text decoration from the link," so I entered the following in style.css:

a ( text-decoration: none; }

It then returned "Bummer! Check the text decoration declaration in your CSS." But I can't find anything wrong with the css that I entered.

Any suggestions?

3 Answers

Adam Moore
Adam Moore
21,956 Points

You have the declaration after a starting with a ( instead of a {. That's probably where it's going wrong for you.

Samuel Durkin
Samuel Durkin
48,402 Points

Are you sure you're using the correct brackets for opening and closing the CSS selector?

Yes, that seems to have solved the problem. Not sure how that silly error crept in - Thanks!