区分CSS hack在不同浏览器的写法

发布时间:2019-08-15编辑:脚本学堂
不同浏览器CSShack的写法也不同,如何使用并区分他们呢?请看下面文章。

区分不同浏览器的css hack写法如下所示:

区分IE6与FF:
        backgroundrange;*blue; 

区分IE6与IE7:
        background:green !important;blue;

区分IE7与FF:
        backgroundrange; *background:green;

区分FF,IE7,IE6:
        backgroundrange;*background:green !important;*blue;

说明:
 

IE都能识别*;标准浏览器(如FF)不能识别*;
IE6能识别*,但不能识别 !important,
IE7能识别*,也能识别!important;
FF不能识别*,但能识别!important;
另外再补充一个下划线"_",
IE6支持下划线,IE7和firefox均不支持下划线。