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 Targett
4,960 PointsAgain, the slate is black. what do I do
I cant remove anything since theres nothing there. Is this stage based on something that should already be there. I wouldnt mind a cliffs notes style answer, as in the code needed, then I can look over it understand it and move on.
Unless anyone has a better idea. Thanks in advance,
2 Answers
Alex Heil
53,547 Pointshi Richard Targett , I guess you're referring to the first question in the challenge, right? this would be Remove the underlines from all the links on the page.
you're right, there's no html or anything you could look at - so let's use our imagination - because that's all we need ;)
so, if we want to remove all the underlines from the links we first have to select all the links. this would be
a
now we need a way for all of these to remove the underlines that are there by default. to do this we would use
text-decoration: none;
when we bring this together we would have
a {text-decoration: none;}
and that way we would solve the challenge - we targeted all links and removed their underlines.
hope that helps and have a nice day ;)
Richard Targett
4,960 PointsHope your not doing this just for the best answer. regardless, you got it TY XDXDXD
Jonathon Ouellette
744 PointsJonathon Ouellette
744 PointsGreat answer!