I'm reading CSS the definitive guide by Eric Meyer 3rd edition.
His section on font-sizes (page 107) states that font size determines the em box. If I do:
span { font-size: 10px; }
Does it set exactly the horizontal and the vertical of the em box to 10px? He refers to the measurement as being the distance between baselines.
I guess I'm a little confused on why it's referred to as a "box" instead of just em height if all it does is measure vertical distance.