I recently started diving into the world of CSS and picked up a copy of Eric Meyer's 3rd edition of CSS: The Definitive Guide.
While reading through his section on font sizes (page 107), I came across an interesting concept - that the font size determines the em box. For example, if I set:
span { font-size: 10px; }
Would this statement exactly set both the horizontal and vertical dimensions of the em box to 10px? According to Meyer, the measurement of the em box is the distance between baselines.
I can't help but wonder why it's called a "box" when it seems to only measure vertical height. Shouldn't it be referred to as just the em height instead?