CSSでリキッド指定する場合のボックスサイズ指定の仕方
■min-height
.foo {
min-height:100px;
height: auto !important;
height: 100px;
}
■min-width
.bar {
min-width:100px;
width: auto !important;
width: 100px;
}
■max-height
.foo {
max-height:100px;
height: auto !important;
height: 100px;
}
■max-width
.bar {
max-width:100px;
width: auto !important;
width: 100px;
}