"JavaScript Basics (Retired)" was retired on March 27, 2020.

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 How to Make a Website CSS: Cascading Style Sheets Style the Basic Elements

Is there no sample coding given to work with for this challenge? If not, what am I supposed to remove underlining from?

In the other code challenges there have been sample fragments of coding that the challenge can be completed on. But I am unsure of how to go forward with this challenge because there is nothing written.

3 Answers

There's a CSS attribute called text-decoration, with him you can underline, overline texts etc. To remove you use the value NONE;

a { text-decoration: none; }

I think it is just asking you to write some CSS that would remove the "text-decoration" from an anchor element. If I recall correctly, Nick shows how to do this in one of the videos prior to the Code Challenge.

Thanks so much! I wasn't sure if there was something I was missing, I'll get right back to it!