Instantly convert REM to CM and CM to REM

A simple and fast tool to convert REM units to centimeter (cm) values and vice versa for your web and print designs.

px
rem
cm

How to Convert REM to CM

 

 

Step 1: Determine the Parent’s Font Size

Identify the font-size of the direct parent element in pixels. The `rem` unit is relative to this value. Enter it in the “Parent Font Size” field above.

Step 2: Use the Conversion Formula

The formula to convert REM to centimeters is: `(REM Value * Parent Font Size) * 2.54 / 96`. This is based on the standard of 96 pixels per inch, and 2.54 centimeters per inch.

Result in CM = (REM * Parent PX) * 2.54 / 96

Step 3: Example Calculation

If you want to convert 2rem to centimeters and the parent’s font size is 24px, the calculation is:

(2 * 24) * 2.54 / 96 = 1.27

So, 2rem is equal to 1.27rcm in this context.

Common REM to PC Reference

A quick reference table based on the parent font size set above.

REM Centimeters
0.5rem 0.2117cm
0.75rem 0.3175cm
1rem 0.4233cm
1.25rem 0.5292cm
1.5rem 0.635cm
2rem 0.8467cm
2.5rem 1.0583cm
3rem 1.27cm
4rem 1.6933cm
5rem 2.1167cm

REM to CM Converter Information

 

Understanding REM Units

The `rem` unit is a relative unit of measurement in CSS. It is relative to the font-size of its direct parent element. This makes it powerful for creating components that scale within themselves, but can sometimes lead to complex calculations in nested elements.

Understanding Centimeters (CM)

The centimeter (cm) is a standard metric unit of length. In digital design, it provides a direct link to real-world physical dimensions, which is crucial for any work that will eventually be printed or needs to conform to physical standards. The conversion relies on a standard screen density of 96 DPI (Dots Per Inch).

Why Convert REM to CM?

Converting `rem` to `cm` is useful when you need to align scalable web designs with fixed physical measurements for print or other real-world applications. This is important for:

  • Print Stylesheets: When creating stylesheets for printing web pages, using `cm` ensures that fonts and layouts are sized correctly on paper.
  • Design Consistency: For projects that span both digital and physical media, converting between `rem` and `cm` helps maintain a consistent design language.
  • Real-World Mockups: If you need to show how a web design element will look at its actual size, converting to `cm` can provide an accurate on-screen preview.