CSS hack在不同浏览器中的写法有哪些区别?

发布时间:2019-12-20编辑:脚本学堂
在本站的css教程中,我们曾讲了很多不同浏览器css写法的差异,本文就此问题进行总结。一直混淆着它们的朋友认真看看。

区别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均不支持下划线。