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 trialAshish Jain
6,319 Pointswhere am I wrong?
https://teamtreehouse.com/library/css-basics/understanding-values-and-units/em-and-rem-units
This is link to the question. I am getting it wrong.
I am stuck at the second task.
header { font-size: 1.8em; }
.title { font-size: 1.625rem; }
h1 { font-size: 5.625rem; }
h2{ font-size: 3.312em; (I am getting this wrong) }
1 Answer
Steven Parker
231,248 PointsIt looks like you did the right thing, but just didn't carry the math out to full precision.
The actual value should be 3.312_5_em.
Ashish Jain
6,319 PointsAshish Jain
6,319 Pointsthanks