Hacks CSS para direcionar várias versões do IE

Você normalmente não deveria fazer isso, mas às vezes você não tem escolha.

selector
{
/* Other browsers */
background
:#000000;

/* IE 6 and below. */
_background
:#FF0000;

/* IE 6 only. */
/* You can "escape" any letter within the property
name which isn't in the range a-f, A-F, 0-9. */

_background
:#00FF00;

/* IE 7 and below. */
*background:#0000FF;

/* IE8 and below. */
background
:#FFFF009;
}