兼容ie6、ie7和firefox的div控制最小高度又自适高度的设置
.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都可以识别。
因为陌生所以勇敢~