区分IE6,IE7,IE8和FF的css hack

网页制作 发布日期:2024/12/28 浏览次数:1

正在浏览:区分IE6,IE7,IE8和FF的css hack

复制代码代码如下:
body{
background:#F00;/*for FireFox,IE 8 7 6 最终运用到FireFox*/
*background:#0F0;/*for IE 8 7 6 最终运用到IE7*/
_background:#00F;/*for IE 6 最终运用到IE6*/
background:#FF0\0;/*for IE 8 最终运用到IE8*/
}