在页面加载了一个<meta http-equiv="X-UA-Compatible" content="IE=5" />
导致后面样式不同,都能继承 !important
在ie中样式是这样
.check_message
{
width:785px;
height:351px;
border: solid 1px #5BD1FF;
background-color: #00688F;
text-align:center;
margin-left:20px;
}
而火狐中
.check_message
{
width:785px;
height:351px;
border: solid 1px #5BD1FF;
background-color: #00688F;
text-align:center;
margin-left:20px;
margin-top:20px !important;
}
然而在浏览器中IE也识别到!important 怎么让在火狐和IE都分开来识别样式
为什么要加上<meta http-equiv="X-UA-Compatible" content="IE=5" />
这个是兼容IE的 程序运行就设置了IE,不用没有版本的IE来调整
搜css hack啊。。。
或者找个专业的设计来做。