10 px in rem — 0.625 rem, 7.5 pt
10 px is 0.625 rem and 7.5 pt — 0.10417 inches, 2.646 mm, and 62.5% of the root font size.
- rem (root 16 px)
- 0.625rem
- pt (points)
- 7.5pt
- pc (picas)
- 0.625pc
- percent of root
- 62.5%
- inches
- 0.10417in
- millimetres
- 2.646mm
- centimetres
- 0.2646cm
Why rem divides by 16
Because browsers default the root font size to 16 px, and rem is a multiple of it. When a reader enlarges text in their browser settings, only the parts written in rem grow — anything pinned in px stays put.
Nearby sizes
On screen, pt and inches are still pixels
CSS fixes one inch at 96 px and one point at 1/72 inch. So 16 px is exactly 12 pt — but hold a ruler to the screen and that "inch" will not measure an inch.
Sizes you meet most
Body text at 16, small text at 14, spacing at 8, 24 and 32 — the values that keep coming back.
How to read this
- rem = px ÷ 16, because browsers default the root font size to 16 px.
- pt = px × 0.75, since CSS fixes an inch at 96 px and a point at 1/72 inch.
- One pc is 12 pt, and one inch is both 96 px and 72 pt.
- Use rem for text and spacing; keep px for hairlines such as borders.
Frequently asked questions
Q. How many rem is 10 px?
0.625 rem — that is 10 divided by 16.
Q. How many points is 10 px?
7.5 pt. A point is 1/72 inch and an inch is 96 px, so you multiply by 0.75.
Q. What length is that?
0.10417 inches, or 2.646 mm — though a ruler on the screen will not agree.
Q. And as a percentage?
62.5% of the root font size.