Leading
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://fontfyi.com/iframe/glossary/leading/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://fontfyi.com/glossary/leading/
Add a dynamic SVG badge to your README or docs.
[](https://fontfyi.com/glossary/leading/)
Use the native HTML custom element.
The vertical distance between lines of text, measured from baseline to baseline. Named after lead strips used in letterpress printing.
Leading (pronounced "ledding") refers to the vertical distance between the baselines of successive lines of text. The term comes from the physical strips of lead that typographers inserted between rows of movable type to add vertical space. In CSS, leading is controlled primarily by the line-height property.
The baseline-to-baseline measurement is what matters for leading — not the space between the bottom of descenders and the top of ascenders on the next line (that's called the slug), but the consistent rhythm from one baseline to the next. This consistency is what creates the vertical cadence that makes text feel organized and comfortable to read.
/* line-height controls leading in CSS */
/* Unitless values are recommended — they scale with inherited font-size */
body {
font-size: 1rem;
line-height: 1.6; /* 1.6 × 16px = 25.6px leading */
}
/* Headlines need tighter leading */
h1 {
font-size: 3rem;
line-height: 1.1; /* Large text with normal leading feels airy and disconnected */
}
h2 {
font-size: 1.75rem;
line-height: 1.25;
}
/* Long-form reading benefits from generous leading */
.article-body {
font-size: 1.125rem;
line-height: 1.75;
max-width: 65ch; /* Leading and measure work together */
}
/* Small, dense UI text */
.data-table td {
font-size: 0.875rem;
line-height: 1.4;
}
/* Avoid unit-based values that don't scale properly */
.problematic {
line-height: 24px; /* Breaks when font-size changes */
}
The optimal leading for body text typically falls between 1.4 and 1.8 of the font size, with 1.5–1.6 being the most common recommendation for general reading. The right value depends on line length (longer lines need more leading), typeface (tall x-height typefaces need more leading), and context (dense data tables can tolerate tighter leading than editorial articles).
Leading and line length are deeply interdependent — they create a grid that the eye navigates when reading. When lines are long, the eye needs more vertical contrast between lines to track back to the left margin correctly. When lines are short (as in newspaper columns), tighter leading maintains visual coherence. Typefaces like Merriweather and Lora are designed with tall x-heights that require slightly more generous leading than average.
관련 용어
이 개념을 보여주는 폰트
더 알아보기
수직 리듬은 모든 텍스트와 간격을 일관된 베이스라인 그리드에 정렬해 시각적 조화를 만듭니다 — 웹에서는 까다롭지만 충분히 구현할 수 있습니다.
타이포그래피 기초코딩 폰트 선택은 생산성에 영향을 미치는 매일의 결정입니다. 프로그래밍을 위한 최고의 Monospace 폰트를 비교합니다 — 리게이처, 가독성, 스타일까지 다룹니다.
타이포그래피 기초자간 조절의 세 가지 축 — 커닝(글자 쌍), 트래킹(전체 자간), 리딩(줄 간격)입니다. 작은 조정이 큰 차이를 만듭니다.