CSS Hack for Internet Explorer 8 (IE8)
Even though internet explorer 8 supports CSS it could happen that you need to use CSS-Hack’s. Here is a short snippet on how to use hacks in IE8 Standard-Mode.
.elementORClass {
color /*\**/: blue\9
}
This CSS-Hack works for all IE versions:
.elementORClass {
color: blue\9
}







