Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Marie Veverka
12,117 PointsRem units
Okay, the base font is set to 16px. My first two tasks give this result:
h1 { font-size: 2.5em; }
p { font-size: 1.5em; }
after that I am supposed to return the link with the class more to the base font size using rem. I tired this and it didn't work:
a class="more" { font-size: 1rem; }
I have tried all sorts of things and nothing seems to work. I even tried adding in the html font-size 1em, 1rem and 16px and nothing seems to work. Please help. Thanks! ;-)
2 Answers

Dave McFarland
Treehouse TeacherThere are two ways you can write a class selector for this:
a.more {font-size: 1rem;}
or
.more {font-size: 1rem;}
You only use class="more"
when you add a class to an HTML element -- not in your CSS.

Marie Veverka
12,117 PointsOhh, thanks Dave! I really appreciate it!