Fussy Font Shorthand Property
You are allowed to specify font properties in CSS, such as font-weight, font-style, font-family, font-size, and font-variant, in shorthand form. But weight, size and family must be specified in that exact order, while the other values can come in any order. Here's an example (note that even though italic got thrown in, weight, size and family are still in the right order):
h1 {font: bold italic 16px Arial;}