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;
}
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;
}
本文详细介绍了如何通过CSS选择器、属性值和特定浏览器的兼容性写法,解决CSS在不同浏览器间的显示差异,特别关注了min/max-*属性的兼容性优化,帮助开发者实现跨浏览器的一致性。
2302

被折叠的 条评论
为什么被折叠?



