IE6 min-height及max-height解决办法
摘要:.box{ max-height:140px; _height:expression(this.scrollHeight > 140 ? "140px" : "auto"); overflow:auto; }再将其扩展之,则:.box{ max-height:140px; min-height:40px; _height:expression(this.scrollHeight > 140 ? "140px" : (this.scrollHeight < 40 ? "40px" : "a
阅读全文
posted @
2011-07-26 19:13
Dufe王彬
阅读(262)
推荐(0) 编辑