EM to PX Converter

This calculation is based on an adjustable default parent element font-size of 16 pixels.

Base

Use this free online em to px converter tool to convert any em value to the equivalent px CSS unit value. A px is a CSS unit of measurement that represents absolute length which is normatively defined as being equivalent to 1/96th of an inch.

Most browsers utilize a defualt font-size value of 16px. So, 1em is equivalent to 16px by default. However, if you decided to change the defualt font-size value of a parent HTML element, you can easily input your changed parent element font-size value to accurately convert from em to px using this instantaneously bidirectional converter.

em to PX Conversion Table

EMPixels
0.0625em1px
0.25em4px
0.5em8px
0.75em12px
1em16px
1.25em20px
1.5em24px
2em32px
2.5em40px
3em48px
4em64px
6em96px
8em128px
10em160px
11em176px
12em192px
13em208px
14em224px
16em256px
20em320px
30em480px
36em576px
48em768px
50em800px
60em960px
62em992px
64em1024px
70em1120px
75rem1200px
80em1280px
90em1440px
100em1600px
120em1920px

How to Convert EM to PX

To convert em to px you should use the formula px = em * parent-element-font-size(font-size of HTML parent element). For example, if the HTML parent element font-size is 32px and you want to convert 3em to px, then 3em = 96px because 3*32 = 96.

EM vs PX

The difference between em and px is that em is a scalable CSS unit of measurement that is relative to the font-size of the parent HTML element. While a px is a unit of absolute length which is normatively defined as being exactly 1/96th of 1 inch.

However, the use of px can create accessibility barriers such as not properly scaling the font-size in browsers. This is why it is better to use em due to it being a scalable CSS unit of measurement.

EM vs REM

The difference between em and rem is that em is a CSS unit of measurement relative to the font-size of the parent HTML element. On the other hand, rem is a CSS unit of measurement relative to the font-size of the root HTML element.

Though both em and rem are scalable and relative units of size, when the font-size of a parent HTML element is changed, child elements utilizing em units within that parent HTML container will be affected, however, those using rem units will not be affected. Therefore, it is better in most cases to use rem becuase of its simplicity, consistency, and predictability when compared to em.

slide 1