Point to PX Converter
Convert points to pixels — the fixed CSS ratio, for turning print or document specs into web styles.
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
| pt | px |
|---|
What It Does
This is the conversion you need when a spec arrives in points — from a print designer, a Word document, or a brand guideline written for paper — and you have to build it for the web. The ratio is fixed by the CSS specification, so no font size is involved: 12pt is 16px, always. The tool gives you the pixel value and the whole scale at once, and reminds you that the right final unit on screen is usually rem rather than the px you land on here.
When to Use It
- You are converting a design handed over in points (pt) into a stylesheet that uses pixels (px) for accessibility.
- You inherited a codebase that mixes units and you need the px equivalent of an existing pt value.
- You want to check what a pt 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
12
12pt is 16px — the default document size and the default browser size are the same thing.
10
10pt is 13.3333px. Non-round results are normal when moving between the two systems; do not round them away.
72
72pt is 96px, which is exactly one CSS inch. This is the definition the whole conversion rests on.
Features
How to Use
1. Enter the point size from your document or print spec. 2. Read the pixel equivalent — no font size is needed, the ratio is fixed. 3. Convert that pixel value to rem before putting it in a stylesheet, so it still scales for the reader.
Common Mistakes
- Shipping the pixel result straight into your CSS. Convert it once more to rem, or the size will ignore the reader's font-size preference.
- Assuming points are device-dependent. In CSS the ratio is fixed at 1pt = 1.3333px regardless of screen or printer.
- Rounding 13.3333px to 13px across a whole scale — small errors compound and the rhythm of the type drifts.
- Using a Word point size unchanged for body text on the web. Print and screen reading distances differ; 12pt paper text usually wants to be a little larger on screen.
Frequently Asked Questions
Related Tools
The conversion runs entirely in your browser. Nothing is uploaded and nothing is stored.