In some cases one may want to apply a set of declarations to more than one selector. This is easily done by simply separating the elements with commas.
Example:
h1, h2, p { ...}
Shorthand properties allow one to concisely specify a set of properties that all belong to one situation such as specifying the various properties related to fonts.
It is recommended that one use the following order for specifying font properties: font-style, font-variant, font-weight, font-size, line-height, and font-family.
Example:
h1 {font: italic small-caps bold 100%/120% arial, helvetica, sans-serif; }
One need only specify the values that one is interested in, the remainder will then assume a default value.
Example: h1, h2 { font: bold helvetica; }