第一种:”\9″:
基本的写法:
1..test { color/*\**/: blue\9 }这个IE6、IE7、IE8都能识别;但是IE8不能识别“*”和“_”的css hack;所以我们可以这样写hack:(转载
1..header {width:300px;} /* 所有浏览器*/2..header {width/*\**/:330px\9;} /* 所有浏览器IE浏览器 */3..header {*width:310px;} /* IE7和IE6能识别,IE8和FF不能识别*/4..header {_width:290px;} /* IE6能识别,IE7、IE8和FF不能识别*/
第二种:就是使用IE的条件注释
具体可以查看这里:http://www.css88.com/archives/705;
其他一些css hack的测试:
1..color1{ color:#F00; color/*\**/:#00F /*\**/}/*IE6,IE7,IE8,FF,OP,SA识别*/2..color2{ color:#F00; color /*\**/:#00F /*\9**/}/*IE7,IE8,FF,OP,SA识别*/3..color3{ color:#F00; color/*\**/:#00F \9}/*IE6,IE7,IE8识别*/4..color4{ color:#F00; color /*\**/:#00F\9}/*IE7,IE8识别*//*“color”和“/*\**/”之间有个空格*/其中:OP表示Opera,SA表示Safari