FF, IE6, IE7的CSS hack

来源:互联网 发布:淘宝详情页统一添加 编辑:程序博客网 时间:2024/05/27 21:11

http://www.aixq.com/read.php?704

现在我大部分都是用!important来hack,对于ie6和firefox测试可以正常显示,但是ie7对!important可以正确解释,会导致页面没按要求显示!搜索了一下,找到一个针对IE7不错的hack方式就是使用“*+html”,现在用IE7浏览一下,应该没有问题了。

现在写一个CSS可以这样:
#example { color: #333; } /* Moz */
* html #example { color: #666; } /* IE6 */
*+html #example { color: #999; } /* IE7 */