|
IE6 |
IE7 |
FF |
* |
√ |
√ |
× |
!important |
× |
√ |
√ |
_ |
√ |
× |
× |
区别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
还可以这样来区分
IE6
,
IE7
,
firefox
: background:orange
;*
background:green
;_
background:blue
;
注:不管是什么方法,书写的顺序都是
firefox
的写在前面,
IE7
的写在中间,
IE6
的写在最后面