In looking at many of the CSS page out there, I often see fonts called out this way font : 11px/15px georgia, serif; How does that work, I mean the two sizes?
In looking at many of the CSS page out there, I often see fonts called out this way font : 11px/15px georgia, serif; How does that work, I mean the two sizes?
This is based on the font attribute, which is the shorthand way of declaring a range of font related attributes in one go.
11px/15px simply means that the font-size should be 11px and the line-height should be 15px.