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

No links or any material on the challenge

I am trying to do a challenge and it says remove the underlines from all links, but nothing shows up in the black workspace, just the number 1 and I can click on the space, but there is nothing to go off of.

css/main.css

1 Answer

Samuel Webb
Samuel Webb
25,370 Points

When it talks about links, it's talking about use CSS to remove underlines from anchor tags in an imaginary HTML page. They're expecting you to provide the code to do that. This is how your code should look:

a {
    text-decoration: none;
}