萬盛學電腦網

 萬盛學電腦網 >> 網頁制作 >> DivCSS教程 >> CSS hack:區分IE6,IE7,firefox

CSS hack:區分IE6,IE7,firefox

class="area"> 區別不同浏覽器,CSS hack寫法:

  區別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;

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

  於是大家還可以這樣來區分IE6,IE7,firefox
  : background:orange;*background:green;_background:blue;

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

  相關:

  在Windows XP下面同時安裝IE6,IE7和firefox
(firefox的不同版本間可以共存,但是IE的不同版本之間不能共存,本文主要是解決將IE6和IE7安裝到同一個XP系統裡面去的問題)

copyright © 萬盛學電腦網 all rights reserved