Points to Em
1 Point (pt) = 0.0833333Em (em)
By KAMP Inc. / UnitOwl · Last reviewed:
How to Convert Points to Em?
To convert points to em, divide the point value by the element's computed font size in points (typically 12pt for the browser default). With a 12pt (16px) base, 1em = 12pt, so 18pt = 1.5em and 24pt = 2em. This conversion bridges print typography (measured in points) and responsive web design (using em for flexible sizing). When a style guide provides type sizes in points and you need to implement them in em-based CSS, this conversion is essential. It also arises when migrating print designs to web, adapting email templates, or integrating with third-party tools that output specifications in points. The benefit of converting to em instead of px is that the type can still respond to local context, such as a larger component font size or a user-adjusted browser default. That makes pt-to-em especially useful when the goal is to preserve proportional relationships rather than freeze everything at one absolute screen size. It is also useful when print-derived type scales need to stay proportional inside reusable components and nested UI patterns.
How to Convert Point to Em
- Determine the base font size in points (default: 12pt = 16px).
- Divide the point value by the base font size in points to get em.
- The formula is: em = pt / base-font-size-in-pt.
- At the 12pt default: 9pt = 0.75em, 12pt = 1em, 14pt = 1.167em, 18pt = 1.5em, 24pt = 2em.
- Alternatively, convert pt to px first (pt x 1.333), then px to em (px / 16).
Real-World Examples
Quick Reference
| Point (pt) | Em (em) |
|---|---|
| 1 | 0.0833333 |
| 2 | 0.166667 |
| 5 | 0.416667 |
| 10 | 0.833333 |
| 25 | 2.08333 |
| 50 | 4.16667 |
| 100 | 8.33333 |
History of Point and Em
The conversion between points and em represents the intersection of two typographic traditions: the absolute measurement system (points, from the 18th century) and the relative measurement system (em, from CSS in the 1990s). Points provided consistency across print shops β 12pt text was the same size everywhere. Em provided flexibility across screens β 1.5em text scales with user preferences. Modern design systems increasingly use em or rem, but point-based specifications persist in brand guidelines, academic formatting standards, and print-first organizations.
Common Mistakes to Avoid
- Dividing by 16 (pixels) instead of 12 (points). The base in the same unit as the input. If starting in pt, divide by the base in pt (typically 12). If starting in px, divide by the base in px (typically 16). The results are the same, but mixing units gives wrong answers.
- Forgetting that em is relative to the parent, not absolute. A 1.5em specification means different pixel sizes depending on where it is applied. In a 12pt context, 1.5em = 18pt. In a 14pt context, 1.5em = 21pt.
- Not accounting for different base sizes in different contexts. If the parent element has been set to 14pt, then 1em = 14pt in that context, and converting 21pt to em gives 21/14 = 1.5em, not 21/12 = 1.75em.
- Converting point sizes to em and then nesting them repeatedly without checking the cascade. A print-derived 1.5em rule can drift away from the intended spec if parent elements also scale in em.
Frequently Asked Questions
Is 12pt always the base for pt-to-em conversion?
Can I use pt in CSS instead of converting to em?
How does this conversion work with the 62.5% trick?
Why choose em instead of rem for point-based type specs?
What is 18pt in em at a 12pt base?
A useful shortcut for pt-to-em at the default 12pt base: divide by 12, or equivalently, multiply by 0.0833. For common sizes: 10pt = 0.833em, 11pt = 0.917em, 12pt = 1em, 14pt = 1.167em, 16pt = 1.333em, 18pt = 1.5em, 24pt = 2em, 36pt = 3em. These cover the vast majority of typographic specifications.
Sources & References
- NIST β Units and Conversion Factors β Official unit conversion factors from the National Institute of Standards and Technology.
- BIPM β The International System of Units (SI) β International SI unit definitions from the International Bureau of Weights and Measures.