Css hacker for ie六、ie七、firefox

區別不一樣瀏覽器,CSS hack寫法:

區別 IE6FF
background:orange;*background:blue;

區別 IE6IE7
background:green !important;background:blue;

區別 IE7FF:   
background:orange; *background:green;

區別 FFIE7IE6: 
background:orange;*background:green !important;*background:blue;

注:IE都能識別*;標準瀏覽器(如FF)不能識別*;
IE6能識別*,但不能識別 !important,
IE7能識別*,也能識別!important;
FF不能識別*,但能識別!important;
  IE6 IE7 FF
* ×
!important ×

另外再補充一個,下劃線"_",
IE6支持下劃線,IE7和firefox均不支持下劃線。
因而你們還能夠這樣來區分IE6,IE7,firefoxcss

background:orange;*background:green;_background:blue;

注:不論是什麼方法,書寫的順序都是firefox的寫在前面,IE7的寫在中間,IE6的寫在最後面。瀏覽器

相關文章
相關標籤/搜索