Jump to navigation

You are currently browsing all posts tagged with 'CSS important'

CSS中的混乱情况

  • Posted on January 14, 2010 at 5:10 pm
<style>
#box {
color:red !important;    /** FF safari IE7**/
}
#box {
color:blue;        /** IE6 **/
}
#box2 {
color:red !important;    /** FF safari IE7**/
color:blue;        /** IE6 **/
}
#box3 {
color: red;
}
#box3 {
color:blue;
}
</style>
<div id="Box"> 为啥我是红色?</div>
<div id="Box2">IE6蓝色,其它浏览器红色</div>
<div id="Box3">为啥我是蓝色?</div>

我搞不清楚了。。。
据说!important是FF IE7 都支持的, IE6不支持。

Top