?
<link rel="stylesheet" type="text/css" href="IE6.css" />
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="IE7.css" />
<![endif]-->
<!--[if !IE]>
<link rel="stylesheet" type="text/css" href="chrome.css" />
<!<![endif]-->
1 ?用浏览器的隐藏标签
?
2 使用!important 因为微软的IE 不支持
?important 是优先的意思
?
<style type="text/css">
.copyright_top {
margin-top:0px!important;
margin-top:-6px;
height:6px!important;
heihgt:0px;
background-color: #e8e8e8;
}
</style>
?