区分IE6,7,8和FF的css hack
区分IE6,7和FF的很简单,相信大家都会了。今天遇到一个问题查了一下IE8的hack,于是又了下面的代码:
1 body{
2 background:#F00;/*for FireFox,IE 8 7 6 最终运用到FireFox*/
3 *background:#0F0;/*for IE 8 7 6 最终运用到IE7*/
4 _background:#00F;/*for IE 6 最终运用到IE6*/
5 background:#FF0\0;/*for IE 8 最终运用到IE8*/
6 }
2 background:#F00;/*for FireFox,IE 8 7 6 最终运用到FireFox*/
3 *background:#0F0;/*for IE 8 7 6 最终运用到IE7*/
4 _background:#00F;/*for IE 6 最终运用到IE6*/
5 background:#FF0\0;/*for IE 8 最终运用到IE8*/
6 }