REM  to  CM Converter

Conversion Guide

1. Convert rem to px (multiply by root font size). 2. Convert px to cm. Example: 1rem = 16px ≈ 0.42333cm

Conversion Settings
This conversion uses a root font size of 16px and assumes a standard screen density of 96 PPI.
REM to CM Conversion Table
REMCMActions
0.250.1058
0.50.2117
0.750.3175
10.4233
1.250.5292
1.50.635
20.8467
2.51.0583
31.27
41.6933
52.1167

Frequently Asked Questions

Basics

What is REM?

The rem (root em) unit is a relative unit that's always based on the font-size of the root element (html). This makes it powerful for creating consistent, scalable layouts that respect user preferences. Unlike em units which compound in nested elements, rem always refers back to the root font-size.

Root Element (html)font-size: 16px (default)1rem = 16px"Normal text size"2rem = 32px"Twice the root size"0.5rem = 8px"Half the root size"
Why should I use rem instead of pixels?
REM units provide better accessibility by respecting user font size preferences, maintain consistent scaling across the site, and simplify responsive design. Unlike pixels, rem units scale proportionally when users change their browser's font size settings.
How do I calculate rem values from pixels?
To convert pixels to rem, divide the desired pixel value by the root font size (typically 16px). For example: 32px ÷ 16px = 2rem. Many code editors and dev tools can do this calculation automatically.
What's the difference between rem and em units?
While both are relative units, em is relative to the font-size of the current element or its closest parent with a defined font-size. rem is always relative to the root element, making it more predictable for layout and preventing compound scaling issues.
When should I use rem vs em units?
Use rem for consistent spacing, layout and general typography. Use em when you want elements to scale relative to their parent's font size, like padding in buttons or line-height in paragraphs.
How can I debug rem calculations?
Most browser dev tools can show both rem and pixel values. You can also set a more convenient root font-size (like 10px) to make calculations easier: html { font-size: 62.5%; } (making 1rem = 10px)

What is CM?

Centimeters (cm) are absolute-length units that correspond to physical centimeters, commonly used in print design and European markets.

4cm012344cm × 1cm
How do cm units compare to other length units?
1cm equals 10mm or approximately 37.8px (at 96 DPI). For web design, relative units like rem are generally preferred.
When are cm units most appropriate?
cm units are most appropriate for print stylesheets or when precise physical measurements are needed in metric units.

Conversion

How to convert REM to CM?

To convert REM to CM, use the following formula:

(rem * root font size) / 37.8