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 trialJeff FitzGerald
4,370 PointsChallenge task 1 of 3 web design CSS. No html to reference and tried typing {text-decoration:none} on blank css page.
Site keeps telling me to check text-decoration value. I can preview and it shows a loaded html page with underlines which is Nicks example portfolio but how do I succesfully complete the challenge task. I cant access the html code.
1 Answer
Jason Anello
Courses Plus Student 94,610 PointsHi Jeff,
The challenge simply guides you on what css to write. There is no html to look at.
text-decoration: none;
is the correct declaration to remove underlines but for what elements?
You haven't supplied a selector there. The challenge wants you to remove the underline from links. So you have to think about which element is for a link.
Jeff FitzGerald
4,370 PointsJeff FitzGerald
4,370 PointsRight, added the link element. Thanks!