1.宽度最小值:
min-width:785px;
width:expression(document.body.clientWidth < 800 ? “785px” : “100%” );
(IE 与 Mozilla Firefox 都好使)
2.高度最小值:
box {
min-height:100px; /*高度最小值设置为:100px*/
height:auto !important; /*兼容FF,IE7也支持 !important标签*/
height:100px; /*兼容ie6*/
overflow:visible;
}