CSS Hack of IE8 and other browsers

web front end five thousand six hundred and seventy-nine 14 years ago (2011-03-22)

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*/
}