PT to PX Converter
Convert between Points (pt) and Pixels (px) with customizable DPI — includes inches, cm, and mm equivalents
Live Font Size Preview
Hello
Conversion Formula
How Points and Pixels relate to each other
PT → PX
px = pt × (dpi ÷ 72)
e.g. 12 × (96 ÷ 72) = 16px
PX → PT
pt = px × (72 ÷ dpi)
e.g. 16 × (72 ÷ 96) = 12pt
At 96 DPI (CSS web standard): 1pt = 1.333px. At 72 DPI (traditional print): 1pt = 1px.
Physical Unit Equivalents
Points
12pt
Inches
0.1667in
Centimetres
0.4233cm
Millimetres
4.2333mm
CSS Style Properties
Points value
h1 {
font-size: 12pt;
}Pixel value
h1 {
font-size: 0px;
}PT to PX Conversion Table
DPI: 96
| Points (pt) | Pixels (px) | Inches (in) | CM | MM |
|---|---|---|---|---|
| 3pt | 4px | 0.0417in | 0.1058cm | 1.0583mm |
| 6pt | 8px | 0.0833in | 0.2117cm | 2.1167mm |
| 9pt | 12px | 0.125in | 0.3175cm | 3.175mm |
| 12pt | 16px | 0.1667in | 0.4233cm | 4.2333mm |
| 15pt | 20px | 0.2083in | 0.5292cm | 5.2917mm |
| 18pt | 24px | 0.25in | 0.635cm | 6.35mm |
| 21pt | 28px | 0.2917in | 0.7408cm | 7.4083mm |
| 24pt | 32px | 0.3333in | 0.8467cm | 8.4667mm |
| 27pt | 36px | 0.375in | 0.9525cm | 9.525mm |
| 30pt | 40px | 0.4167in | 1.0583cm | 10.5833mm |
| 33pt | 44px | 0.4583in | 1.1642cm | 11.6417mm |
| 36pt | 48px | 0.5in | 1.27cm | 12.7mm |
| 39pt | 52px | 0.5417in | 1.3758cm | 13.7583mm |
| 42pt | 56px | 0.5833in | 1.4817cm | 14.8167mm |
| 45pt | 60px | 0.625in | 1.5875cm | 15.875mm |
| 48pt | 64px | 0.6667in | 1.6933cm | 16.9333mm |
| 51pt | 68px | 0.7083in | 1.7992cm | 17.9917mm |
| 54pt | 72px | 0.75in | 1.905cm | 19.05mm |
| 57pt | 76px | 0.7917in | 2.0108cm | 20.1083mm |
| 60pt | 80px | 0.8333in | 2.1167cm | 21.1667mm |
About PT to PX Conversion
What is PT (Points)?
PT (Points) is a typographic unit from print design — 1 point = 1/72 of an inch. Points are the standard unit in print stylesheets, PDF generation, desktop publishing tools (InDesign, Illustrator), and design applications like Figma and Sketch.
What is PX (Pixels)?
PX (Pixels) is the standard absolute unit for screen-based CSS. One CSS pixel corresponds to the CSS reference pixel — 1/96 of an inch. Unlike pt, px is device-independent and predictable across modern browsers, making it the go-to unit for screen design.
The Conversion Formula
px = pt × (dpi ÷ 72)
At 96 DPI (CSS web standard): 1pt = 1.333px, so 12pt = 16px. At 72 DPI (traditional print): 1pt = 1px exactly.
When to Use PT vs PX
- PT: Use for
@media printstylesheets, PDF generation, and matching design tool specifications. - PX: Use for all screen CSS — it is more predictable and widely supported.
- Avoid pt in screen CSS; its rendered size depends on the device's DPI setting.
Common Conversions (DPI = 96)
6pt
8px
8pt
10.67px
9pt
12px
10pt
13.33px
11pt
14.67px
12pt
16px
14pt
18.67px
16pt
21.33px
How to Use the PT to PX Converter
- 1
Enter your value
Type the points (or px) value you want to convert into the "From Value" input field.
- 2
Select the unit direction
Choose pt or px in both dropdowns. Use the swap button to reverse direction instantly.
- 3
Adjust DPI if needed
Click Show Settings to change the DPI. Use 96 for screen output (CSS standard) and 72 for traditional print.
- 4
Read the result and copy
The converted value appears instantly. Click Copy to copy it to your clipboard.
- 5
Check physical equivalents and the table
The Physical Unit Equivalents panel shows the pt value in inches, cm, and mm. The table lists common pt values across all units.
Tip: At 96 DPI, multiply any pt value by 1.333 to get pixels. The most useful reference: 12pt = 16px — the default body text size in both print and web browsers.
Common Use Cases
Print Stylesheet Development
- • Define font sizes in pt for
@media printstylesheets - • Verify that pt print sizes match the intended px screen values
- • Align print and screen stylesheets with consistent typographic sizes
Design Tool to Web CSS
- • Convert Figma or Sketch pt font sizes to px for web implementation
- • Translate Adobe XD or InDesign point values to CSS pixel units
- • Match desktop publishing pt specifications to web px values
PDF Generation
- • Convert pt font sizes from PDF specs to px for web previews
- • Ensure wkhtmltopdf or Puppeteer PDFs match the web layout pixel sizes
- • Reconcile pt-based PDF styles with CSS px values in your stylesheet
Email Client Compatibility
- • Convert Outlook pt font sizes to px for cross-client consistency
- • Verify that pt sizes in HTML email render at expected pixel sizes
- • Translate pt-based email design specs to CSS px values
Physical Measurement Reference
- • Check the inch, cm, and mm equivalent of any pt or px value
- • Verify physical font sizes for print materials at a given DPI
- • Cross-reference digital px sizes with physical print measurements
Learning & Teaching CSS
- • Understand how DPI affects the pt-to-px relationship
- • Demonstrate why pt should be avoided in screen CSS
- • Use the live preview and physical units panel for hands-on learning
Frequently Asked Questions
What is the formula to convert pt to px?
px = pt × (dpi ÷ 72). At the standard web DPI of 96: 1pt = 1.333px and 12pt = 16px. At print DPI of 72: 1pt = 1px exactly.
Why does 12pt equal 16px?
At 96 DPI, 1pt = 96/72 = 1.333px. Multiply by 12: 12pt = 16px. This is why 12pt — the standard body text size in print — maps exactly to 16px, the browser's default font size.
Should I use pt in my web CSS?
Generally no. PT is a physical unit tied to print (1/72 inch). On screens its rendered size depends on DPI, making it unpredictable. Use px, em, or rem for all screen CSS. Reserve pt for @media print stylesheets where physical measurement matters.
What DPI should I use?
Use 96 DPI for standard web screens (the CSS reference pixel standard). Use 72 DPI for traditional print or macOS native points. CSS pt values on screen are anchored to the CSS reference pixel, not the physical display DPI.
How many pixels is 1 point at 96 DPI?
1pt = 1.3333px at 96 DPI. Common values: 6pt = 8px, 9pt = 12px, 12pt = 16px, 18pt = 24px, 24pt = 32px.
How do I convert px back to pt?
Use the swap button, or apply: pt = px × (72 ÷ dpi). For 16px at 96 DPI: 16 × 0.75 = 12pt.
Is my data safe? Does this tool send data to a server?
No data leaves your browser. All calculations happen entirely client-side using JavaScript. Nothing you enter is uploaded or stored anywhere.
How does pt relate to inches, cm, and mm?
1 point = 1/72 inch = 0.0353 cm = 0.353 mm. These physical measurements are fixed regardless of DPI — only the pixel equivalent changes. The Physical Unit Equivalents panel in this tool shows all four values simultaneously.