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

Harry Beckwith
Harry Beckwith
13,452 Points

Select the link with the class more. Using the rem unit, set its font size back to the base font size of the root HTML

html{ font-size:1rem; }

a .more{ font-size:1rem; }

2 Answers

Wayne Priestley
Wayne Priestley
19,579 Points

Hi Harry,

Soooo close,

.more {
font-size: 1rem;
}

You only needed to select the class .more

Harry Beckwith
Harry Beckwith
13,452 Points

Awesome, it worked, I think the way the question is worded, "select the link" is the reason i placed 'a' into the css.

Garrett Rodriguez
Garrett Rodriguez
17,588 Points

You could probably do a.more (no spaces) to grab only links with the more class. More that you need for this exercise but it could be useful in the future if you just need a type of element and not all of the elements with a class.

Harry Beckwith
Harry Beckwith
13,452 Points

okay it makes sense, thanks for the quick response.