.div{
height:auto !important; height:100px; min-height:100px } 其中!important在ie7和ff都可以读到而且权重高于后面的height,所以当在ie7和firefox显示的时候,就会用了前面的 height:auto !important
又ie6识别不了!important,auto对它也不管用,故会应用了后面的height的样式
而且min- height:100px表示最小高度为100px;此属性在ie7和firefox都可以识别。