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 trialJon Sanchez
6,625 Pointsrem unit help!
I'm having a little bit of trouble resizing the .more a class back to the html size! Any help? ):
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 element.
html {font-size: 1em; }
h1 {font-size: 2.5em; }
p {font-size: 1.5em;}
.more a { font-size: .4rem; }
2 Answers
Adam Sackfield
Courses Plus Student 19,663 PointsREM (Relative Em) is the base unit size for the document so the code below will pass.
a.more { font-size: 1rem; } // Notice you also had the wrong selector see below.
You were selecting all "a" inside the class more, rather than the above "a" with the class more
Jon Sanchez
6,625 PointsAh, thank you so much!
Adam Sackfield
Courses Plus Student 19,663 PointsAnytime!
Jeff Busch
19,287 PointsJeff Busch
19,287 PointsHi Adam,
.more works
Jeff