IE6实现max-height及min-height
时间:2014-04-29 23:37:26
收藏:0
阅读:489
一、max-height:
.div-max-height{max-height:270px;_height:expression(this.scrollHeight > 270 ? "270px" : "auto"); overflow-y:auto}
二、min-height
.div-min-height{min-height:100px;_height:100px;overflow:visible}
评论(0)