What is the value of an em in terms of pixels?

10em = ?px ?

link|improve this question

70% accept rate
feedback

6 Answers

up vote 8 down vote accepted

There's no specific relationship between em and px. It's computed based on the width of the "m" character for each font-face.

link|improve this answer
4  
In traditional typography it is. In CSS, however, it is the font height. – Quentin Sep 23 '09 at 22:04
feedback

While as others have said, there is no set ratio - as it varies from font to font - it is possible to calculate this for a particular font face/size combination by using DHTML.

Simply create a div with

style="width: 1em; visibility:hidden"

and append it to the place in the document you are interested about.

You can then find out its width by checking the div's clientWidth property

link|improve this answer
feedback

It depends on the font and the platform you're rendering on. There is no universal ratio.

link|improve this answer
feedback

It's about 160px, if 1em is 16px and 10em = 1000%. It's just an approximation, which will depend on font, browser and OS.

link|improve this answer
first of all it doesn't make sense, how are you comparing to relative %'s? – CrazyJugglerDrummer Sep 23 '09 at 0:58
1  
@CrazyJugglerDrummer, Ems are relative too, 1em = 100% obviously. Pixels and points are depend on font, browser and OS. – Alex Pavlov Sep 23 '09 at 3:50
feedback

If you are using a standard sized text font of 11 or 12px then a general rule of thumb is 1em is going to be about that big in pixels, so 11 or 12 pixels.

link|improve this answer
A CSS em is "The size of the font", so that isn't so much a general rule of thumb and as absolute rule. – Quentin Sep 23 '09 at 22:02
feedback

By default 1em is 16px (font-size:100%;), so 16px x 10em = 160px

You can change the size of an em by changing the percent of the font-size in the body, for example if you want to change the size of an em to 10px, this would be your CSS:

body {
font-size:62.5%;
}

16px x 62.5% = 10px

link|improve this answer
The default is whatever the user has their font size set to. This is often 16px, but not always. – Quentin Sep 23 '09 at 22:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.