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 trialPrasad Devaraj
2,397 Pointsrem conversion
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.
I guess the default font-size of root element is 16px and equivalent value in rem is '1rem'. Following is my code. ,,,,, .more {font-size:1rem;} ,,,,,
However, looks like it's wrong !! Please enlighten me.
1 Answer
Pedro Cabral
Full Stack JavaScript Techdegree Student 23,916 PointsYou are targeting the class but not the link element - I think you need to be more specific as in:
a.more {
font-size: 1rem;
}