CSS Hacking

We obviously try to avoid hacking away at CSS but sometimes you have to target certain IEs and this page is very useful in how to do it:
Netuts link
Essentially..
body {
color: red; /* all browsers, of course */
color : green9; /* IE8 and below */
*color : yellow; /* IE7 and below */
_color : orange; /* IE6 */
}