欧美日韩精品在线,国内精品久久久久久久久,一级毛片恃级毛片直播,清纯唯美亚洲综合欧美色

區(qū)分IE6,IE7和firefox的CSS hack_CSS教程

編輯Tag賺U幣
教程Tag:暫無Tag,歡迎添加,賺取U幣!
區(qū)別IE6與FF:

background:orange;*background:blue;
區(qū)別IE6與IE7:

background:green !important;background:blue;
區(qū)別IE7與FF:

background:orange; *background:green;
區(qū)別FF,IE7,IE6:

background:orange;*background:green !important;*background:blue;
注:IE都能識別*;標(biāo)準(zhǔn)瀏覽器(如FF)不能識別*;
IE6能識別*,但不能識別 !important,
IE7能識別*,也能識別!important;
FF不能識別*,但能識別!important;


IE6 IE7 FF
* √ √ ×
!important × √ √


--------------------------------------------------------------------------------
另外再補充一個,下劃線"_",
IE6支持下劃線,IE7和firefox均不支持下劃線。(推薦)

于是大家還可以這樣來區(qū)分IE6,IE7,firefox

: background:orange;*background:green;_background:blue;
注:不管是什么方法,書寫的順序都是firefox的寫在前面,IE7的寫在中間,IE6的寫在最后面。

來源:模板無憂//所屬分類:CSS教程/更新時間:2008-02-10
相關(guān)CSS教程