<hack> selector{ sRules }
简单列举几个:
* html .test{color:#090;} /* For IE6 and earlier */ * + html .test{color:#ff0;} /* For IE7 */ .test:lang(zh-cn){color:#f00;} /* For IE8+ and not IE */ .test:nth-child(1){color:#0ff;} /* For IE9+ and not IE */
* 上述代码中的3,4两行就是典型的利用能力来进行选择的CSS Hack。