css hack-!important

来源:互联网 发布:新浪体育英超数据库 编辑:程序博客网 时间:2024/06/06 16:35

首先 !important的优先权最高  但通过书写方式可以避开ie6的小bug

三种情况:

第一种,

<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>测试Css中的!Important区别</title> </head> <style type="text/css">.testClass{ color:blue !important;}</style><body>    <div class="testClass" style="color:red;">        测试Css中的Important    </div></body></html>
ie6下元素显示蓝色  其它浏览器也是

第二种,

.testClass{ color:blue !important;color:red;}
ie6下元素显示红色 其他浏览器是蓝色

第三种,

.testClass{ color:blue !important; } .testClass{ color:red; }
ie6下元素显示蓝色 其它浏览器也是
0 0