第一種,是CSS HACK的方法
height:20px; /*For Firefox*/
*height:25px; /*For IE7 & IE6*/
_height:20px; /*For IE6*/
注意順序。
這樣也屬于CSS HACK,不過沒有上面這樣簡(jiǎn)潔。
#example { color: #333; } /* Moz */
* html #example { color: #666; } /* IE6 */
*+html #example { color: #999; } /* IE7 */
第二種是使用IE專用的條件注釋
<!-- 其他瀏覽器 -->
<link rel="stylesheet" type="text/css" href="css.css" />
<!--[if IE 7]>
<!-- 適合于IE7 -->
<link rel="stylesheet" type="text/css" href="ie7.css" />
< ![endif]-->
<!--[if lte IE 6]>
<!-- 適合于IE6及一下 -->
<link rel="stylesheet" type="text/css" href="ie.css" />
< ![endif]-->
第三種css filter的辦法,以下為經(jīng)典從國(guó)外網(wǎng)站翻譯過來的。
新建一個(gè)css樣式如下:
#item {
width: 200px;
height: 200px;
background: red;
}
新建一個(gè)div,并使用前面定義的css的樣式:
<div id="item">some text here</div>
在body表現(xiàn)這里加入lang屬性,中文為zh:
<body lang="en">
現(xiàn)在對(duì)div元素再定義一個(gè)樣式:
*:lang(en) #item{
background:green !important;
}
這樣做是為了用!important覆蓋原來的css樣式,由于:lang選擇器ie7.0并不支持,所以對(duì)這句話不會(huì)有任何作用,于是也達(dá)到了ie6.0下同樣的效果,但是很不幸地的是,safari同樣不支持此屬性,所以需要加入以下css樣式:
#item:empty {
background: green !important
}
:empty選擇器為css3的規(guī)范,盡管safari并不支持此規(guī)范,但是還是會(huì)選擇此元素,不管是否此元素存在,現(xiàn)在綠色會(huì)現(xiàn)在在除ie各版本以外的瀏覽器上。
對(duì)IE6和FF的兼容可以考慮以前的!important</body>