Toolman

Convert rem to in

At the browser default root font size of 16 px, 1rem = 0.166667in. Change the base below if your project uses a different root size.

Formula

in = rem × 0.166667
rem = in × 6

Because rem is relative, this ratio holds only at a 16 px base. If your project sets html { font-size: 62.5% } — a common trick that makes 1rem equal 10 px — set the base above to 10 instead.

REM to IN conversion table

remin
8rem1.3333in
10rem1.6667in
12rem2in
14rem2.3333in
16rem2.6667in
18rem3in
20rem3.3333in
24rem4in
28rem4.6667in
32rem5.3333in
36rem6in
40rem6.6667in
48rem8in
56rem9.3333in
64rem10.6667in
72rem12in
80rem13.3333in
96rem16in
128rem21.3333in

About rem

One rem equals the font size of the root <html> element — 16 px unless you or the user changes it. Because it ignores nesting, rem is the unit of choice for a consistent type and spacing scale.

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 16rem in in?

16rem equals 2.6667in at a 16 px root font size.

How do I convert rem to in?

Multiply the rem value by 0.166667. Going the other way, multiply the in value by 6.

Does the root font size change the result?

Yes. One of these units is relative to the root font size, so changing it changes the conversion. Use the base control above to match your project.

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