一般来说是针对不同的浏览器写不同的CSS,就是CSS Hack。
IE浏览器Hack一般又分为三种,条件Hack、属性级Hack、选择符Hack(详细参考CSS文档)。例如:
- 条件Hack
<!--[if IE]>
<style>
.test {
color: red;
}
</style>
<![endif]-->
- 属性Hack
.test {
color: #090; / For IE8+ /
color: #f00; / For IE7 and earlier /
_color: #ffo; /For IE6 and earlier */
}
- 选择符Hack
IE6 能识别html .class{}, IE7 能识别 +html .class{} 或者 *:first-child+html .class{}