As harvey said it has to do with the line-height property when using font: shorthand.
Very bad behavior, unpredictable results.
font: 14px/16px is the same as,
font-size: 14px; line-height: 16px;
CSS shorthand is not always reliable cross-browser.
For best cross-browser results body{ baselines are best practice along with baselines for other commonly used elements.
ie: P{ margin:;padding:;}
|