WebToolsPlanet
Converter Tools

Percent to Point Converter

Convert CSS percent font sizes to typographic point units. At the 16px default base, 100% = 12pt.

Last updated: May 21, 2026

Client-Side Processing
Input Data Stays on Device
Instant Local Execution

Find this tool useful? Support the project to keep it free!

Buy me a coffee

What is Percent to Point Converter?

CSS percent for font-size is relative to the parent element's font size. Points (pt) are absolute typographic units used in print. Converting from percent to pt requires a base px size: **pt = (% ÷ 100) × base × 0.75**.

At the 16px browser default: 100% → 16px → 12pt. This conversion is useful when you need the print point equivalent of a percent-based CSS font size.

How to Use Percent to Point Converter

1

Set the base (parent) font size — default 16px

2

Enter percent values, comma or newline separated

3

Copy the pt output or use the reference table

Common Use Cases

  • Developers writing @media print stylesheets that need to match percent-based screen sizes.
  • Designers converting percent type scales to typographic points for print specs.
  • Front-end engineers auditing print CSS for consistency with percent-based screen layouts.

Example Input and Output

Convert common percent font sizes to pt at the 16px default base.

Percent values
75
100
125
150
PT output
75% → 9pt
100% → 12pt
125% → 15pt
150% → 18pt

Privacy

All conversions run in your browser. No data is sent to any server.

Frequently Asked Questions

Why is 100% = 12pt at the default?
100% at 16px base = 16px. 16px × 0.75 = 12pt. This matches the browser default body text to the print default body text.