Ma che sbadatello!

Allora, diciamo che esistono in css alcune "definizioni brevi" o short-hand, che permettono di comprimere in uno solo più proprietà e attributi.

Ad esempio, esiste la proprietà background che ti permette di scrivere così:
codice:
div {
   background:#ddd url(img.png) no-repeat fixed 50% 50%;
}
Occorre però seguire l'ordine preciso. Stessa cosa esiste per i font:
codice:
body {
   font:1em/1.5em Verdana,sans-serif;
}
Tutte le shorthand le trovi al solito posto:

- http://www.w3.org/TR/CSS21/colors.html#q2
- http://www.w3.org/TR/CSS21/fonts.html#font-shorthand
...