浏览模式: 标准 | 列表Tag:兼容

头痛的兼容问题,css hack

以下两种方法几乎能解决现今所有HACK.

1, !important
    随着IE7对!important的支持, !important 方法现在只针对IE6的HACK.(注意写法.记得该声明位置需要提前.)
<style>
#wrapper
{
    width: 100px!important; /* IE7+FF */
    width: 80px; /* IE6 */
}
</style>

» 阅读全文

Tags: css, div, hack, 兼容