IE6实现max-height及min-height

一、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}

转载于:https://www.cnblogs.com/honeyHHX/p/3696946.html

你可能感兴趣的:(IE6实现max-height及min-height)