IE7,IE6,Firefox,CSS全搞定!!!!!
时间:2007-06-27 来源:xh_terry
<style>
#fuck
{
background:orange !important;/*FF*/
*background:green !important;/*IE7*/
background:blue; /*IE6*/
}
</style>
<div style="width:100px; 111</div>
将上边的代码放到页面body中 注意不要忘记给页面添加标准 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 原理: IE6能识别*,但不能识别 !important,
IE7能识别*,也能识别!important;
FF不能识别*,但能识别!important;
#fuck
{
background:orange !important;/*FF*/
*background:green !important;/*IE7*/
background:blue; /*IE6*/
}
</style>
<div style="width:100px; 111</div>
将上边的代码放到页面body中 注意不要忘记给页面添加标准 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 原理: IE6能识别*,但不能识别 !important,
IE7能识别*,也能识别!important;
FF不能识别*,但能识别!important;
相关阅读 更多 +