第一种方法:我们可以利用IE6不识别!important来实现:
height:auto!important;
height:500px;
min-height:500px;
还有一种方法:在IE6IE5IE7FF测试竟然正常,而且能通过W3C检测的,方法如下:
#test {
min-height:100px;
background:#BBB;
_height:100px;
overflow: visible;
}
说明一下上面这段CSS的意思。
min-height:100px;这一句在ie7和FF已经可以正常显示了。。
_height:100px这一句在ie6,ie5测试显示正常。但不能过W3C验证:L
overflow:visible;这一句为了注明#test当内容超过100px时就自动延长。
注意:你必须保证#test以外的都要是overflow:visible。否则还是不会显示超出。