.color{
background-color: #CC00FF; /*所有浏覽器都會顯示為紫色*/
background-color: #FF0000\9; /*IE6、IE7、IE8會顯示紅色*/
*background-color: #0066FF; /*IE6、IE7會變為藍色*/
_background-color: #009933; /*IE6會變為綠色*/
}
**記住上面得樣式解釋為順序是 ff、ie8、ie7、ie6 **
顯示的結果:
用火狐浏覽,顏色是紫色
用 IE8 浏覽,顏色是紅色
用 IE7 浏覽,顏色是藍色
用 IE6 浏覽,顏色是綠色
例子:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>無標題文檔</title>
<style type="text/css">
.main{
width:200px;color:#fff;
height:400px;background:#f00;/*ff紅色*/
height:200px\9;background:#ff0\9;/*ie8黃色*/
*height:200px;*background:#0ff;/*ie7藍色*/
_height:100px;_background:#000;/*ie6黑色*/
}
</style>
</head>
<body>
<div class="main">ff紅色height:400px / IE8黃色height:200px / IE7 藍色height:200px / IE6黑色height:100px</div>
</body>
</html>
--------------------------------------------------------
如果你只是為了兼容ie7和8,其實可以在<head>裡加上這樣一條代碼:
<meta http-equiv="X-UA-Compatible" content="IE=7">
即可免去你大量修改代碼,但是我發現,有些後台程序員往往會把它刪掉,具體原因我也不清楚。
微軟在IE8提供三種解析頁面的模式
IE8 Standard Modes :默認的最標准的模式,嚴格按照W3C相關規定
IE7 Standards Modes :IE7現在用的解析網頁的模式,開起機關是在<head>中加入 <meta http-equiv="X-UA-Compatible" content="IE=7">
Quirks Modes :IE5用的解析網頁的模式,開起機關是刪除HTML頂部的DOCTYPE聲明
注意:不同模式間的網頁在IE8中可以互相 frame ,因此因不會模式下的DOM和CSS渲染不一樣,所以會引發很多問題,務必注意如果你的頁面對IE7兼容沒有問題,又不想大量修改現有代碼,同時又能在IE8中正常使用,微軟聲稱,開發商僅需要在目前兼容IE7的網站上添加一行代碼即可解決問題,此代碼如下:
<meta http-equiv="x-ua-compatible" content="ie=7" />
IE8 最新css hack:
"\9" 例:"margin:0px auto\9;".這裡的"\9"可以區別所有IE和FireFox.
"*" IE6、IE7可以識別.IE8、FireFox不能.
"_" IE6可以識別"_",IE7、IE8、FireFox不能.
---------------------------------------------------------
一些IE6 IE7 IE8 FF的CSS hack
p{+color:#f00;} 支持 IE6 IE7 不支持FF IE8
p{_color:#f00;} 支持 IE6 不支持FF
p{color:#00f !important;}
p{color:#f00;} 支持 IE7 IE6 FF IE8
p{color:#00f !important;color:#f00;} 支持 IE7 IE8 FF 不支持 IE6
head:first-child+body p{color:#f00;} 支持 IE7 IE8 FF 不支持 IE6
/*\*//*/
p{color:#f00;}
/**/ 支持 IE8 不支持IE6 IE7 FF
html*p{color:#f00;} 支持 IE6 IE7 不支持FF IE8
html>p{color:#f00;} 支持 IE7 IE8 FF 不支持 IE6
html[xmlns] p{color:#f00;} 支持 IE7 IE8 FF 不支持 IE6
@import 'style.css';
@import "style.css";
@import url(style.css);
@import url('style.css');
@import url("style.css"); 支持 IE7 IE6 FF IE8
p{/*/*/color:#f00;/* */} 支持 IE6 IE7 FF 不支持 IE8
* html p {color:#f00;} 支持 IE6 不支持 FF IE7 IE8
*+html p {color:#f00;} 支持 IE7 IE8 不支持 FF IE6
p {*color:#f00;} 支持 IE7 IE6 不支持 FF IE8
====================================================
這樣寫,也許會簡單些,很方便,但是這個只是IE8對IE7的兼容模式
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<meta http-equiv="x-ua-compatible" content="ie=7">
<html xmlns="http://www.w3.org/1999/xhtml">
注意:<meta http-equiv="x-ua-compatible" content="ie=7"> IE8兼容IE7的模式