css与浏览器兼容

区别不同浏览器的CSS hack写法:

区别IE6与FF:
        background range;*background:blue;

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

区别IE7与FF:
        background range; *background:green;

区别FF,IE7,IE6:
        background range;*background:green !important;*background:blue;

* html p {color:#f00;}   支持 IE6        不支持FF IE7 IE8b
*+html p {color:#f00;}   支持 IE7 IE8b        不支持FF IE6
p {*color:#f00;}      支持 IE7 IE6        不支持FF IE8b

注:IE都能识别*;标准浏览器(如FF)不能识别*;

IE6能识别*,但不能识别 !important,
IE7能识别*,也能识别!important;
FF不能识别*,但能识别!important;
另外再补充一个,下划线"_",
IE6支持下划线,IE7和firefox均不支持下划线。

posted on 2009-07-24 13:36  现实的沙漠  阅读(139)  评论(0)    收藏  举报

导航