區別不同瀏覽器的CSS hack寫法:
區別IE6與FF:
backgroundrange;*blue; < /span>
IE6與7:區別background:green !important;blue; < /span>
區別IE7與FF:
backgroundrange; *background:green;
#FF,IE7,IE6:
#. backgroundrange;*background:green !important;*blue; < /span>
註:IE都能辨識*;標準瀏覽器(如FF)無法辨識*;
IE6能辨識*,但不能辨識!important,
IE7能辨識*,也能辨識!important;
FF不能辨識*,但能辨識!important;
另外再補充一個,下劃線"_",
IE6支援下劃線,IE7和firefox均不支援下劃線。
以上是不同瀏覽器的CSS hack寫法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!