PX to Point Converter
Convert pixels to points for print stylesheets — a fixed ratio, with a note on why screen DPI does not enter into it.
Browsers default to 16px. Use 10 if your CSS sets html { font-size: 62.5% }.
About this conversion
The same value at other root sizes
| Root size | Result |
|---|
Common conversions at 16 px
| px | pt |
|---|
What It Does
Points are a print unit, and CSS pins them to pixels by definition: one inch is 96px and one point is a seventy-second of an inch, so the ratio never changes. That makes this the one conversion in the family that needs no font size at all. It matters when writing a print stylesheet, where designers and printers still think in points, or when translating a Word or InDesign spec into CSS. The tool also flags that a CSS pixel is a fixed reference unit, not a physical dot on your screen.
When to Use It
- You are converting a design handed over in pixels (px) into a stylesheet that uses points (pt) for accessibility.
- You inherited a codebase that mixes units and you need the pt equivalent of an existing px value.
- You want to check what a px value becomes when the user changes their browser's default font size.
- You are writing a design-token scale and need the same step expressed in both units.
Worked Examples
16
16px is 12pt — the default body size in a browser is the classic 12-point book size.
12
12px is 9pt. Below this, printed text gets hard to read for most people.
24
24px is 18pt, a typical printed heading.
Features
How to Use
1. Enter the pixel value. 2. Read the point equivalent — the ratio is fixed, so no font size is needed. 3. Use the table to convert a whole type scale at once.
Common Mistakes
- Assuming points depend on your screen resolution. In CSS they do not: 1pt is always 1.3333px, whatever the device.
- Using pt for screen styles. Points are for the print stylesheet; on screen they ignore the reader's font-size preference exactly as px does, with no upside.
- Expecting a CSS inch to be a physical inch on screen. It is a reference unit fixed at 96px; only in print does it map to real paper.
- Rounding to whole points too early — 13px is 9.75pt, and forcing it to 10pt is a 2.5% shift across a whole scale.
Frequently Asked Questions
The conversion runs entirely in your browser. Nothing is uploaded and nothing is stored.