Convert pc to in
At the browser default root font size of 16 px, 1pc = 0.166667in. Change the base below if your project uses a different root size.
Formula
in = pc × 0.166667
pc = in × 6
Both units are absolute in CSS, so this ratio never changes regardless of font size or user settings.
PC to IN conversion table
| pc | in |
|---|---|
| 8pc | 1.3333in |
| 10pc | 1.6667in |
| 12pc | 2in |
| 14pc | 2.3333in |
| 16pc | 2.6667in |
| 18pc | 3in |
| 20pc | 3.3333in |
| 24pc | 4in |
| 28pc | 4.6667in |
| 32pc | 5.3333in |
| 36pc | 6in |
| 40pc | 6.6667in |
| 48pc | 8in |
| 56pc | 9.3333in |
| 64pc | 10.6667in |
| 72pc | 12in |
| 80pc | 13.3333in |
| 96pc | 16in |
| 128pc | 21.3333in |
About pc
A pica is 12 points, or 1/6th of an inch — 16 CSS pixels. It survives mainly in print layout and legacy stylesheets.
About in
CSS defines one inch as exactly 96 pixels. On screen this is a nominal measure, not a guarantee of physical size; in print stylesheets it maps to a real inch.
Which unit should you use?
| Property | Recommended unit | Why |
|---|---|---|
| Font size | rem | Scales with the user's browser font-size preference, which px ignores — an accessibility requirement. |
| Padding and margin | rem or em | rem for a consistent global rhythm; em when the spacing should track the component's own text size. |
| Borders and hairlines | px | You almost always want exactly one crisp pixel, not a value that scales. |
| Media query breakpoints | em | Historically the most reliable across browsers when the user zooms. |
| Print stylesheets | pt, cm, mm | These map to real physical measurements on paper. |
Frequently asked questions
What is 16pc in in?
16pc equals 2.6667in at a 16 px root font size.
How do I convert pc to in?
Multiply the pc value by 0.166667. Going the other way, multiply the in value by 6.
Does browser zoom change the result?
No. Both units are absolute in CSS and keep the same ratio at any zoom level, though the rendered size on screen changes.
Why does CSS use 96 pixels per inch?
It is a historical convention from early desktop displays that became the fixed CSS reference. It has nothing to do with your monitor's real pixel density — the browser scales CSS pixels to physical ones for you.