Points to Pixels
1 Point (pt) = 1.33333Pixel (px)
By KAMP Inc. / UnitOwl · Last reviewed:
How to Convert Points to Pixels?
One point equals approximately 1.333 pixels at the standard 96 DPI screen resolution. To convert points to pixels, multiply the point value by 1.333 (or equivalently, multiply by 96/72). This conversion is essential when translating print design specifications to screen. If a brand style guide specifies headings at 24pt, the web developer needs to set them at 32px (24 x 1.333) to achieve the same logical size. Word processor documents, PDF specifications, and email templates often use points, while CSS and web frameworks use pixels. Understanding this conversion ensures that screen layouts match print designs accurately and that cross-platform typography remains visually consistent. It also helps during design handoff, where specs may come from PDFs, pitch decks, or desktop publishing files that were never intended for CSS. The exact decimal result is often more useful than a rough whole-number estimate because modern browsers can handle fractional values, and even when designers round, they usually want to know how far the rounded web size drifts from the original print specification. That makes pt-to-px conversion a routine QA step when a web build has to mirror a signed-off PDF.
How to Convert Point to Pixel
- Start with your size in points (pt).
- Multiply the point value by 1.333 (or 96/72) to get pixels (px).
- The result is your size in pixels.
- For common sizes: 12pt = 16px, 14pt = 18.67px, 18pt = 24px, 24pt = 32px.
- For reverse conversion, multiply pixels by 0.75 to get points.
Real-World Examples
Quick Reference
| Point (pt) | Pixel (px) |
|---|---|
| 1 | 1.33333 |
| 2 | 2.66667 |
| 3 | 4 |
| 5 | 6.66667 |
| 10 | 13.3333 |
| 15 | 20 |
| 20 | 26.6667 |
| 25 | 33.3333 |
| 50 | 66.6667 |
| 75 | 100 |
| 100 | 133.333 |
| 250 | 333.333 |
| 500 | 666.667 |
| 1,000 | 1333.33 |
History of Point and Pixel
The typographic point has its origins in the 18th century French type-founding system. Pierre Simon Fournier proposed a point system in 1737, which was later refined by François-Ambroise Didot. The modern "PostScript point" (exactly 1/72 of an inch) was standardized by Adobe for desktop publishing in 1984. When the web emerged in the 1990s, CSS needed a screen-native unit and chose the pixel at 1/96 inch. The 96/72 conversion factor between these units is now an immutable part of web standards and will not change, even as physical display technology evolves.
Common Mistakes to Avoid
- Rounding point values to the nearest pixel prematurely. CSS supports fractional pixels (e.g., font-size: 13.33px), though browsers round to whole pixels for rendering. For layout calculations, keep the decimal precision until the final value.
- Assuming point sizes in Word will look identical in CSS. Word uses points at the operating system DPI, while CSS pixels are resolution-independent reference units. Text may appear slightly different due to font rendering and antialiasing differences between platforms.
- Using the wrong conversion direction. Points to pixels multiplies by 1.333 (numbers get larger). Pixels to points multiplies by 0.75 (numbers get smaller). If your pixel value is smaller than the point value, you went the wrong way.
- Rounding every converted value to a convenient design token without checking the result. Jumping from 18.67px to 20px may simplify a scale, but it also changes the typographic hierarchy more than many teams realize.
Frequently Asked Questions
Why is the common body text exactly 12pt / 16px?
Can I use pt in CSS instead of converting to px?
How does this conversion work on mobile devices with high DPI?
Should I round point conversions to whole pixels in CSS?
What is 9pt in pixels?
For web developers receiving designs in points: create a quick reference table for your project. The most common conversions are 9pt=12px, 10pt=13.3px, 11pt=14.7px, 12pt=16px, 14pt=18.7px, 16pt=21.3px, 18pt=24px, 24pt=32px, 36pt=48px. Pin this to your project documentation to avoid recalculating during implementation.
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.