What is the value of an em in terms of pixels?
10em = ?px ?
|
feedback
|
|
There's no specific relationship between em and px. It's computed based on the width of the "m" character for each font-face. | |||||
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
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 | |||
|
feedback
|
|
It depends on the font and the platform you're rendering on. There is no universal ratio. | |||
|
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. | |||||||
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. | ||||
feedback
|
|
By default You can change the size of an
16px x 62.5% = 10px | ||||
feedback
|