REM to Pixel Converter
Convert REM to Pixels using the formula:
Pixels = REM × Base Font Size
This conversion helps in web development for maintaining consistent and scalable typography.
Convert REM to Pixels using the formula:
Pixels = REM × Base Font Size
This conversion helps in web development for maintaining consistent and scalable typography.
REM (Root EM) is a relative unit in CSS that is based on the font size of the root <html>
element. The default root font size is 16px, but it can be changed in CSS.
To convert REM to Pixels, use the formula:
1rem × 16
= 16px2rem × 16
= 32px3rem × 20
= 60pxREM | Pixels (Base 16px) |
---|---|
0.5 rem | 8 pixel |
1 rem | 16 pixel |
1.5 rem | 24 pixel |
2 rem | 32 pixel |
2.5 rem | 40 pixel |
3 rem | 48 pixel |
3.5 rem | 56 pixel |
4 rem | 64 pixel |
4.5 rem | 72 pixel |
5 rem | 80 pixel |
6 rem | 96 pixel |
7 rem | 112 pixel |
8 rem | 128 pixel |
9 rem | 144 pixel |
10 rem | 160 pixel |