Target #CSS to browser [ #IE fixes ]
How to target a single CSS instruction to IE and also to a single version of IE.
element {
/* All Browsers */
property: value;
/* IE 7 and below */
*property: value;
/* IE 6 and below */
_property: value;
/* IE 6 only */
_pr\operty: value;
}