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

I'm trying to answer the the first task of the challenge and no code is showing up on the screen to edit.

I watched the full video then was taken to the challenge. The first task is to remove all the underlined elements but there are no elements at all on the screen. Just wondering if I am doing something wrong.

2 Answers

Hi Kate,

There is no html to look at for this challenge.

The instructions are describing the css that you need to write.

Remove the underlines from all the links on the page.

So you have to think about what element is a link and then write a selector for that along with the property and value that would remove the underline from links.

Something like this:

selector {
  property: value;
}

it is shown in the previous video.

Thanks, I actually realized that about 30 seconds before i received you message.

You're welcome.