让 IE6支持max-height

min-height

min-height:100px;
_height:100px

max-height

max-height:200px;
overflow:auto;/*超出部分显示滚动条*/
_height: expression(this.scrollHeight > 200 ? "200px" : "auto");

相关键接

原文地址:https://www.cnblogs.com/rubylouvre/p/3878313.html