2011年11月16日

IE6 / max-height / min-height

.class-a{
    max-height:100px;
    min-height:50px;
overflow:auto;
    -height:expression(
this.scrollHeight > 100 ? "100px" : (
this.scrollHeight <  50 ? "50px" : "auto"
)
);

}
.class-b{
max-height:100px;
overflow:auto;

-height:expression(this.scrollHeight > 100 ? "100px" : "auto");

}