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 CSS Foundations Values and Units Relative Length Units

how to select the link with class more?

I am not able to complete task 3 can anyone help?

1 Answer

There is more than 1 selector you could use for example:

.more {
  color: #000;
}

a.more {
  color: #000;
}

Both select the same thing but the 2nd one is a bit more specific.

Check out CSS Foundations - Selectors as well as CSS Foundations - Advanced selectors , which covers all the ways you can select an element.

Hope this helps!