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

Steven Barron
Steven Barron
6,380 Points

I am on code challenge CSS. I must "Remove the underlines from all the links on the page". However, there is no code

There is no code to work off of in the code challenge. Is it supposed to be this way?

3 Answers

I believe this is just a generic question on how you would remove the underlines from all the links on the page using CSS. To accomplish this task, select all the anchor elements and then use text-decoration to remove the underlines. You should not need any other code to accomplish this.

it should be fine, just select the "a" tag and write your css.

Thomas Seelbinder
PLUS
Thomas Seelbinder
Courses Plus Student 1,223 Points

Yup, in this challenge there is nothing for you to add to. just simply write the correct line of code that you would use in your CSS to remove the underline. Text-Decoration: none;