Possible Duplicate:
What does this CSS shorthand font syntax mean?
Sometimes the font is specified using two values, for example
font: 14px/60px
Why are two values specified? When the 60px will be used? Thanks.
Possible Duplicate:
What does this CSS shorthand font syntax mean?
Sometimes the font is specified using two values, for example
font: 14px/60px
Why are two values specified? When the 60px will be used? Thanks.
The 60px is the line-height. It's a shorthand for:
font-size: 14px;
line-height: 60px;
60px will be the line-height value
see http://www.developerfusion.com/code/5342/css-font-shorthand-rule/