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 trialSandeep Singh
3,582 PointsHI , i could not complete the next task with converting font size in em to rem .
header { font-size: 1.8em; }
.title { font-size: 1.625em; }
h1 { font-size: 5.625em; }
How to make .title and h1's font size in rem equal to the header's em font size ??
/* Complete the challenge by writing CSS below */
header {
font-size: 1.8em;
}
.title {
font-size: 1.625em;
}
h1 {
font-size: 5.625em;
}
1 Answer
Steven Parker
231,248 PointsApparently, you already know the "unit that is relative to the root element". All you need to do now is "Replace the em units of .title
and h1
" in the code.
Sandeep Singh
3,582 PointsSandeep Singh
3,582 PointsSteven Parker ..thanks i have solved this.