Possible Duplicate:
What does this CSS shorthand font syntax mean?
I was looking at some styles and I didn't know what the syntax of this font tag meant?
font: 13px/80px
Is this a min/max option for font size?
Possible Duplicate:
What does this CSS shorthand font syntax mean?
I was looking at some styles and I didn't know what the syntax of this font tag meant?
font: 13px/80px
Is this a min/max option for font size?
The 13px
sets the font-size
property. The 80px
sets the line-height
property.
No, its not min/max. 13px
is the font size and 80px
is the line height to be considered.