codice:
body {
  background: red;  /* tutti i bowser */
  *background: green; /* IE 8, 7, 6, 5 */
  _background: yellow; /* IE 6, 5 */
  ba/ckground: black /* IE 5 */
}
come risultato tutti i browser avranno un body con sfondo rosso, MA
IE 7 e 8 sfondo verde
IE 6 giallo
IE 5 nero.

sono css hacks. Da usare con estrema parsimonia e ritocchi isolati, altrimenti vanno caricati dei css ad hoc tramite commenti condizionali (cerca nel forum)