让所有浏览器包括IE6即支持最大高度又支持最小高度。
.yangshi{Max-Height:620px;Min-Height:40px;_height:expression(this.scrollHeight > 620 ? "620px" : (this.scrollHeight < 40 ? "40px" : "auto"));}
IE6支持Max-Height和支持Min-Height CSS代码
_height:expression(this.scrollHeight > 620 ? "620px" : (this.scrollHeight < 40 ? "40px" : "auto"));
说明:以上代码作用是让对象的最小高度为40px,最大高度为620px的CSS样式属性
记得给div设置 overflow:auto
不必用jquery就能解决问题,或者你没把问题描述清楚
div{
width:100px;
height:100px;
max-height:100px;
overflow-y:scrooll;
}
判断 高度 大于 最大高度的时候 添加css属性 overflow:scroll