IE6-8 CSS hack
2009/04/03 1:04 A.M.
IE的css hack, 记录一下, 防止混淆~
* html (only IE6)
_attribute (only IE6)
*attribute (IE6, IE7)
+attribute (IE6, IE7)
*+html (only IE7)
以上写法都不支持IE8
attribute\9 (IE6, IE7, IE8)
Example:
.mainnav {
font-size: 15px; // all
font-size: 16px \9; // ie6, ie7, ie8
*font-size: 17px; // ie6, ie7
_font-size: 18px; // ie6
}
