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 trialHarry Beckwith
13,452 PointsSelect 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
19,579 PointsHi Harry,
Soooo close,
.more {
font-size: 1rem;
}
You only needed to select the class .more
Garrett Rodriguez
17,588 PointsYou 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
13,452 Pointsokay it makes sense, thanks for the quick response.
Harry Beckwith
13,452 PointsHarry Beckwith
13,452 PointsAwesome, it worked, I think the way the question is worded, "select the link" is the reason i placed 'a' into the css.