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 trialRichard Mook
14,226 Pointsbroken 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
21,956 PointsYou have the declaration after a
starting with a (
instead of a {
. That's probably where it's going wrong for you.
Samuel Durkin
48,402 PointsAre you sure you're using the correct brackets for opening and closing the CSS selector?
Richard Mook
14,226 PointsYes, that seems to have solved the problem. Not sure how that silly error crept in - Thanks!