由于IE6无法识别css中的最小宽度min-width及最小高度min-height,而IE7+及其他比如Firefox等浏览器可以很好的支持,而同样IE不支持!important强调注释,利用这一点可以解决这个问题,代码如下:
xhtml:
<div id="test">min 100x100</div>
#test{float:left;min-height:100px;height:auto!important;height:100px;min-width:100px;width:auto!important;width:100px;background:#ccc;}