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.

Adrienne McDonnell
4,409 PointsDon't understand what I'm doing wrong in last challenge
I'm supposed to assign the font-size of the list with class 'more' the value of the root font size using rem. I believe this should be 1rem, but it's telling me to check my length unit. Can anyone see what I'm doing wrong??
<!DOCTYPE html>
<html>
<head>
<title>Relative Length Units</title>
<link rel="stylesheet" type="text/css" href="cc1-main-styles.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="box">
<h1>Let's use Font-Relative Length Units</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<a class="more" href="#">Read more...</a>
</p>
</div>
</body>
</html>
/* Write your CSS code below */
h1 {
font-size: 2.5em;
}
p {
font-size: 1.5em;
}
.more li {
font-size: 1rem;
}
2 Answers

Dustin Matlock
33,856 PointsAdrienne, remove the li
selector and you should be good.

Adrienne McDonnell
4,409 Pointsah, got it. thank you!