< Browse > Home /

| RSS

CSS Hacks for IE8

[ More ] Dec 17, 2009 | No Comments | Posted in HowTo, Web Development |

Here it is, CSS Hacks for IE8, But, be little cautious while using them, sometimes, they may not work well with complex CSS syntaxes.

IE8 Standards-Mode Only:

.test { color /*\**/: blue\9 }

All IE versions, including IE8 Standards Mode:

.test { color: blue\9 }

[ View Post ]