REM → CM Converter
Converting from REM to CM is common when switching from useful for typography scaling and accessibility. to mainly for print precision or physical measurements. in CSS projects.
Conversion Form
About the Unit
REM (Root EM): REM is a relative unit that depends on the root font size, typically defined in the `<html>` element of the document. The main advantage of REM is that it provides a consistent and scalable way to work with measurement units in web design, especially when creating responsive and accessible layouts. When you define the root font size, for example, as 16px, 1rem will be equivalent to 16px. If the root font size is changed, all measurements in rem will adjust proportionally, which makes controlling the layout as a whole easier. This is especially useful for ensuring that the design is consistent and accessible, as users can adjust the font size in the browser. Using rem instead of px helps maintain the layout's proportions when scaling the page globally without needing to adjust each value individually.
Pro Tip: rem → cm
For print design, convert rem to cm for accurate physical dimensions.
Quick Reference: Unit Conversion by Tens
| REM | CM |
|---|---|
| 10rem | 4.233333cm |
| 20rem | 8.466667cm |
| 30rem | 12.7cm |
| 40rem | 16.933333cm |
| 50rem | 21.166667cm |
| 60rem | 25.4cm |
| 70rem | 29.633333cm |
| 80rem | 33.866667cm |
| 90rem | 38.1cm |
| 100rem | 42.333333cm |
| 110rem | 46.566667cm |
| 120rem | 50.8cm |
| 130rem | 55.033333cm |
| 140rem | 59.266667cm |
| 150rem | 63.5cm |
| 160rem | 67.733333cm |
| 170rem | 71.966667cm |
| 180rem | 76.2cm |
| 190rem | 80.433333cm |
| 200rem | 84.666667cm |
| 210rem | 88.9cm |
| 220rem | 93.133333cm |
| 230rem | 97.366667cm |
| 240rem | 101.6cm |
| 250rem | 105.833333cm |
Live Unit Preview
See how different CSS units affect the size of the box below:
10px
10rem
10em
10%
10vw
10vh
Common Mistake
For print design, convert rem to cm for accurate physical dimensions.
Real Code Example
/* Mobile-first card with rem → cm */
.card {
padding: 0rem; /* undefinedcm */
font-size: 1.5rem;
width: min(90vw, 40ch);
}Frequently Asked Questions About REM
When should I use rem instead of rem?
Use rem for consistent scaling across components.
How many rem is 1rem?
1rem = 16px by default.
Is rem affected by zoom?
Yes, it scales with user settings and zoom.
Is rem good for fonts?
Yes, it's preferred for accessibility.
Keyboard Shortcuts
- Ctrl + C: Convert
- Ctrl + I: Invert units
- Esc: Reset values