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 Text, Fonts, and Lists Text Properties

Gavin Broekema
seal-mask
.a{fill-rule:evenodd;}techdegree
Gavin Broekema
Full Stack JavaScript Techdegree Student 22,443 Points

Unit-less value vs. ems/%

Just to clarify. What is the reason that you would use the unit-less value rather than ems or % to define line height?? My assumption is the unit-less value does not derive its original value from the parent element. Is this right?

1 Answer

Steven Parker
Steven Parker
231,269 Points

:point_right: The unit-less value is a multiplier of the current font size.

By using a unit-less value, then if you change the font size later, the line-height will adjust so the proportions to the font are still the same.

The only relationship to the parent is that the font size is normally inherited.