Is there a recommended line height standard to prevent text from being cropped at the top or bottom regardless of font style, weight, and size?
One might initially consider using 100%
or 1
, but setting line-height: 100%
or line-height: 1
can result in letters like g
and y
being partially cut off depending on the font. Based on my experience, line-height: 1.2
seems to be the minimum required.
Is there a specific (possibly relative) value for line-height
that guarantees no part of a character will be clipped?