CSS Min-Height Hack

用如下代码就可以实现任何浏览器下的min-height:

selector {
min-height:500px;
height:auto !important;
_height:500px;
}
注意:
仔细想想,height的默认值本来就是auto,为什么还加height:auto !important;呢,所以准确的代码是:
selector{
min-height:500px;
_height:500px;
}
posted @ 2012-01-12 15:49  陈大脑袋  阅读(168)  评论(0编辑  收藏  举报