IE8 and other commonly used browser CSS Hack for:
#box{
color:red; /* All browsers support*/
color:red ! important;/* Firefox, IE7 support*/
_color:red; /* IE6 Support*/
*color:red; /* IE6 and IE7 support*/
*+color:red; /* IE7 support*/
color:red\9; /* IE6, IE7, IE8 support*/
color:red\0; /* IE8 support*/
}