Toolman

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

pcin
8pc1.3333in
10pc1.6667in
12pc2in
14pc2.3333in
16pc2.6667in
18pc3in
20pc3.3333in
24pc4in
28pc4.6667in
32pc5.3333in
36pc6in
40pc6.6667in
48pc8in
56pc9.3333in
64pc10.6667in
72pc12in
80pc13.3333in
96pc16in
128pc21.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?

PropertyRecommended unitWhy
Font sizeremScales with the user's browser font-size preference, which px ignores — an accessibility requirement.
Padding and marginrem or emrem for a consistent global rhythm; em when the spacing should track the component's own text size.
Borders and hairlinespxYou almost always want exactly one crisp pixel, not a value that scales.
Media query breakpointsemHistorically the most reliable across browsers when the user zooms.
Print stylesheetspt, cm, mmThese 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.

Related CSS unit conversions

All CSS unit converters · All converters