日期:2014-05-17  浏览次数:20648 次

CSS IE浏览器的HACK 解决办法
CSS IE浏览器的HACK 解决办法

selector{
property:value; /* 所有浏览器 */
property:value\9; /* 所有IE浏览器 */
+property:value; /* IE7 */
_property:value; /* IE6 */
}

min/max-* 的兼容性写法:

selector{
/* min-height */
min-height:100px;
height:auto !important;
height:100px;
overflow:visible;
/* max-height */
height:auto !important;
height:450px;
max-height:450px;
overflow:hidden;
}