I want to know what the em
unit is, and how much 1em is when converted to pixels (px
). I also read somewhere about some IE bug, to overcome which body font-size should be set to something, but couldn't follow much. Can somebody explain that in detail?
相关问题
- Adding a timeout to a render function in ReactJS
-
Why does the box-shadow property not apply to a
- Add animation to jQuery function Interval
- jQuery hover to slide?
- Issue with star rating css
It's calculated off of whatever your body font size is. You can use a pixel to em converter to find out exactly what it is on your site.
PxToEm
Despite what you may read elsewhere, there is no direct relationship between em and px.
As one of the links states:
So it's going to be different for every font. A narrow font might have the same height (in px) as an extended font, but the em size will be different.
EDIT three years later:
There are now lots of sources which say that 1em = font size (in px). That is, when you write
font-size:16px
, then 1em = 16px. This still doesn't agree with the Adobe source (which says 1em = the font size inpt
), but in either case it seems bizarre; the em size would be far too large with condensed fonts and far too small with extended fonts.I'm going to make some test pages and see for myself.
And also:
I see that nobody (including me) actually answered the question (which was kind of hidden):
According to this page, you need to add this to your css:
html{ font-size:100%; }
. That page is six years old, and I haven't read the (hundreds) of comments, so I don't know if it's still relevant.