EM  to  CM Converter

Conversion Guide

1. Convert em to px (multiply by parent element font size). 2. Convert px to cm. Example: 1em = 16px ≈ 0.42333cm

Conversion Settings
This conversion uses parent font size of 16px and assumes 96 PPI.
EM to CM Conversion Table
EMCMActions
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 EM?

The em unit creates sizes that adapt to their parent element's font size - like a family inheritance system for measurements. When you use 1em, you're saying 'make this the same size as my parent's font'. Using 2em means 'make this twice my parent's font size'. This makes em units perfect for creating harmonious, scalable designs.

Understanding the EM Unit in CSSParent Elementfont-size: 16px (browser default)1em= 16px1.5em= 24px(16px × 1.5)0.5em= 8px(16px × 0.5)EM units are relative to the parent element's font size
I set my element to 1.5em but it's bigger than expected. What's happening?
Em units cascade - if your parent element is already 1.2em, then 1.5em will actually be 1.5 times that increased size. This compound effect is both powerful and sometimes tricky to manage.
Should I use em for padding and margins too?
Yes! Using em for padding and margins helps maintain proportional spacing as font sizes change. For example, button padding of 1em will grow naturally with the button's text size.
My nested elements keep getting bigger and bigger with em. Help!
This is the cascading effect of em units. Each nested element multiplies the parent's size. Consider using rem for deeper nested elements or reset sizes at specific levels if this isn't desired.
When should I use em vs rem vs px?
Use em when you want elements to scale with their parent's font size (like component internals), rem when you want scaling based on root font size (like headers), and px for truly fixed sizes (like borders).

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 EM to CM?

To convert EM to CM, use the following formula:

(em * parent font size) / 37.8