Personal CSS Hacks for IE6, IE7 and IE8
Target IE versions with CSS "Hacks"
More to your point, here are the hacks that let you target IE versions.
Use "\0/" (backslash, zero & slash) to target IE8 and below. Use "*" (asterisk) to target IE7 and below. Use "_" (underscore) to target IE6.
Example:
/* STANDARD */
body { border:1px solid red; }
/* IE8 */
body { border:1px solid blue\0/; }
/* IE7 */
body { *border:1px solid orange; }
/* IE6 */
body { _border:1px solid blue; }
Thanks





