火狐和ie8只识别!important
ie7识别!important和*
ie6识别*和_为什么下面的结果,在ie6~ie8下都显示一样?
<html>
<head>
<style type="text/css">
.a {
width:30px;height:30px;
background:red !important;
}
.b {
width:30px;height:30px;
_background:blue;
}
.c {
width:30px;height:30px;
*background:gray;
}
</style>
</head>
<body>
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
</body>
</html>