当前位置: 代码迷 >> Web前端 >> 不同的浏览器载入不同的式样
  详细解决方案

不同的浏览器载入不同的式样

热度:71   发布时间:2012-11-16 14:12:15.0
不同的浏览器载入不同的样式

?

<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>
?
  相关解决方案