3 min read
Line Height
You copied a design system's line-height: 1.2 onto body paragraphs. The typeface has a tall x-height. Every line feels stacked on the one below it.
The Principle
Leading, called line-height in CSS, is the distance between consecutive baselines. It works with measure, x-height, and font size. Too tight, paragraphs feel dense. Too loose, lines lose their connection.
The Rule I Follow
For body copy, I start between 1.5 and 1.65, then adjust for the typeface. Fonts with a larger x-height often need slightly less leading.
Try It Yourself
Drag from 1.2 → 1.5 → 2.0 and feel how the paragraph breathes.
Below 1.5 on body text, lines start to suffocate. Above 1.65, paragraphs drift apart.
The Mistake I'd Avoid
Trying to fix a crowded paragraph by only increasing line height. Often the real problem is the measure or font size.
Remember This
Leading should help your eyes find the next line without thinking.
p {
line-height: 1.5; /* minimum for comfortable body reading */
}p {
line-height: 1.5; /* minimum for comfortable body reading */
}