CHAPTER 03
Beginner
Typography Terminology
Updated: May 16, 2026
20 min read
# CHAPTER 3
Typography Terminology
1. Introduction
To manipulate typography like a professional, you must learn to speak the language of a typographer. When a Senior Designer tells you to "increase the leading because the descenders are crashing," a beginner will stare blankly at the screen. A professional instantly knows exactly which CSS value or Figma setting to adjust. Typography is an ancient craft, and its terminology is rooted in the physical metal blocks used in 15th-century printing presses. In this chapter, we will dissect Font Anatomy and Typography Terminology. We will look at letters under a microscope, defining the mathematical lines they sit on, the vertical space they occupy, and the critical micro-adjustments of spacing known as Kerning, Tracking, and Leading.2. Learning Objectives
By the end of this chapter, you will be able to:- Identify the invisible structural lines of text (Baseline, Cap Height, X-Height).
- Recognize anatomical letter parts (Ascenders and Descenders).
- Distinguish between Kerning (individual spacing) and Tracking (global spacing).
- Understand Leading (Line Height) and its critical impact on readability.
- Utilize correct typographic vocabulary when communicating with developers.
3. The Invisible Grid (Vertical Anatomy)
Letters do not float randomly; they are anchored to a strict, invisible mathematical grid.- The Baseline: The invisible horizontal line that all the letters "sit" on. (Like the blue lines on a piece of notebook paper).
- The Cap Height: The height of the flat capital letters (like 'H' or 'T') measured from the baseline.
- The X-Height: The height of the lowercase letters (specifically the lowercase 'x'), resting on the baseline. *A font with a massive x-height looks very large and legible at small sizes.*
4. The Anatomy of the Letters
Letters frequently break out of the X-Height zone.- Ascender: The part of a lowercase letter that extends *above* the x-height (e.g., the tall vertical stems on the letters 'h', 'l', 'b', 'd').
- Descender: The part of a lowercase letter that drops *below* the baseline (e.g., the hanging tails on the letters 'g', 'p', 'y', 'j').
5. The Three Spacing Metrics (The Holy Trinity)
Mastering these three spacing rules separates amateurs from experts.1. Leading (Line Height):
- *Definition:* The vertical space between two lines of text. (Named because early printers literally placed strips of physical lead metal between the rows of type).
- *UI/CSS Term:* Line-Height.
-
*The Rule:* If lines of text are too close together, the ascenders and descenders crash into each other, making reading impossible. Standard UI body text should have a line height of roughly
140% to 160%of the font size.
2. Tracking (Letter Spacing):
- *Definition:* The uniform horizontal space distributed equally across an *entire block or word* of text.
- *UI/CSS Term:* Letter-Spacing.
- *The Rule:* You use Tracking to make a word feel airy and premium. UPPERCASE text looks beautiful with increased tracking (extra space). Lowercase paragraph text should almost never have its tracking altered.
3. Kerning (Individual Spacing):
- *Definition:* The micro-adjustment of horizontal space between *two specific, individual letters*.
- *The Problem:* Because letters have different shapes (like a slanted 'A' next to a 'V'), the computer's default spacing often leaves a massive, ugly gap between them. Kerning is manually nudging those two specific letters closer together so the word looks perfectly balanced.
6. Diagrams/Visual Suggestions
*Visual Concept: The Anatomy Diagram* Provide a massive diagram of the word "Typography" written in a Serif font.- Draw a solid line underneath the entire word. Label: "Baseline."
- Draw a dotted line across the top of the lowercase 'y', 'p', 'o', 'r', 'a'. Label: "X-Height."
- Draw an arrow pointing to the tall stem of the 'h'. Label: "Ascender."
- Draw an arrow pointing to the hanging tail of the 'p' and 'y'. Label: "Descender."
7. Best Practices
-
Uppercase Requires Tracking: When you type a word in ALL CAPS, the letters become massive and blocky. If you do not increase the Tracking (Letter-spacing), the letters look cramped and aggressive. Always add
1pxto2px(or10%) of tracking to uppercase UI elements like small subheadings or button text to make them look premium and legible.
8. Common Mistakes
- Crashing Leading (Line-Height): A designer leaves the line-height setting in Figma at "Auto" or "100%" for a dense paragraph of text. The hanging tail of a 'g' on line 1 literally touches the tall stem of an 'h' on line 2. The text becomes a solid, unreadable block of black ink. *Always increase body line-height to 150%.*
9. Mini Project: Fix the Broken Typography
Let's manually adjust the metrics to rescue a bad design.-
1.
Type the word "AVATAR" in massive
72pxfont. Notice the massive, ugly gap between the 'A' and the 'V' due to their slanted shapes.
-
2.
Place your cursor between the A and V. Hold
Alt(orOption) and press theLeft Arrow Keyto manually nudge the 'V' closer to the 'A'. You just performed Kerning!
-
3.
Type a 3-line paragraph of text. Set the Line-Height to
100%. Notice how cramped and unreadable it is.
-
4.
Change the Line-Height to
150%. Notice how the lines breathe, and the ascenders/descenders clear each other perfectly. You just optimized Leading.
10. Practice Exercises
- 1. Define the physical difference between an "Ascender" and a "Descender." Provide two examples of lowercase letters that contain an ascender, and two that contain a descender.
- 2. Explain the fundamental difference between "Kerning" and "Tracking" (Letter-spacing). Which one adjusts the entire word uniformly, and which one targets the gap between two specific letters?
11. MCQs with Answers
Question 1
In typography, what is the name of the invisible, foundational horizontal line upon which all standard uppercase and lowercase letters (excluding hanging tails) sit?
Question 2
You are designing a dense, multi-paragraph article for a blog. You notice that the lines of text are vertically cramped, and the bottom loops of the letters on line 1 are touching the top stems of the letters on line 2. Which specific typographic metric must you increase to solve this readability failure?
12. Interview Questions
- Q: Explain the mechanical difference between Tracking and Kerning. Give me an example of a specific UI/Branding scenario where manually Kerning two letters is absolutely necessary.
- Q: What is the "X-Height" of a font? Why does a font family with a relatively massive X-Height (like Inter or Arial) perform significantly better on tiny mobile screens than a font with a very small X-Height?
-
Q: A junior developer is coding your design and sets the CSS
line-heightof the main article body text to1.0(100%). How do you mathematically explain to them why this ruins the user experience, and what standard multiplier would you recommend instead?