FONT shorthand is braindead
body {
font: normal small-caps normal 16px/1.4 Georgia;
}
/* is the same as:
body {
font-family: Georgia;
line-height: 1.4;
font-weight: normal;
font-stretch: normal;
font-variant: small-caps;
font-size: 16px;
}
*/
There are seven font sub-properties, including:
|
font-stretch sets the font width
|
font-style italicised or oblique.
|
font-variant display as small caps.
|
font-weight sets the weight
|
font-size sets the height
|
line-height defines the amount of space above and below inline elements.
|
font-family Font face
|
|
|