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

AR Ehsan
AR Ehsan
7,912 Points

Challenge Task 1 of 3 Remove the underlines from all the links on the page.

I don't have any code on my webpage.How do I complete it. I need some help! Thanks!

css/main.css

1 Answer

Hi Abdullah,

This challenge doesn't have any code to start with. You can't see the html but the instructions give you enough info to write the css.

Since you have to remove the underlines from all links on the page, this means that you need a way to select all the links on the page.

This is the general format of the css rule you need to write for task 1.

selector {
  property: value;
}

The selector will be the html element that is used to make links.

The property that deals with underlines is text-decoration I believe this was used in the course website.

Let me know if you're still having trouble.