网页制造:不同浏览器CSS Hack写法 |
发布时间:2020-05-05 文章来源:本站 浏览次数:3106 |
差异IE6与FF: background:orange;*background:blue; 差异IE6与IE7: background:green !important;background:blue; 差异IE7与FF: background:orange; *background:green; 差异FF,IE7,IE6: background:orange;*background:green !important;*background:blue; 注:IE都能辨认*;标准浏览器(如FF)不能辨认*; IE6能辨认*,但不能辨认 !important, IE7能辨认*,也能辨认!important; FF不能辨认*,但能辨认!important; IE6 IE7 FF * √ √ × !important × √ √ 别的再弥补一个,下划线"_", IE6支持下划线,IE7和firefox均不支持下划线。 于是大家还能够这样来区分IE6,IE7,firefox : background:orange;*background:green;_background:blue; 注:不论是什么方法,书写的次序都是firefox的写在前面,IE7的写在中间,IE6的写在最后面。 |