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

Nikki Turrisi
Nikki Turrisi
15,095 Points

I have a question about the challenge question, Front End Development track, stage 4, task 3

It asks me to select the link and give it an em value equal to the root measurement, but I am having the hardest time figuring this out. Can someone help me on this? Thank you

1 Answer

Hi Nikki, here's the formula to calculate the rem equivalent. And remember, the default size for most web browsers is 16px.

Target Size / Base Size = Value

Which provides you with:

16px = 1rem (base)

.more {
  font-size: 1rem;
}