差别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;