IE6でmin-heightを実現する
IE6でmin-heightを実現する為のハックは以下の通り。
[css toolbar=”false”]
.box {
    min-height: 600px;
    height: auto !important;
    height: 600px;
}
[/css]
ですが、
[css toolbar=”false” gutter=”false”]
overflow: hidden;
[/css]
を適用するうまくいかないので注意が必要。
