css解决浏览器兼容性问题

来源:互联网 发布:淘宝自动刷手机版本 编辑:程序博客网 时间:2024/05/17 22:36
  1. 在样式前后加上 <!--[if IE X]> <![endif]-->,被包含的css样式只会在对应的ie版本内进行加载,从而解决兼容性问题.

<!--[if IE 6]>

<style type="text/css">
    div{
    width:550px;
text-align: center;
}
.divOne{
width:60;
height: 100; 
float: left; 
margin-top: 35px; 
margin-left: 25px;
}
.divInOne{
width: 30; 
height: 30; 
float: left; 
margin-left: 23px; 
}
</style>
<![endif]-->
原创粉丝点击