问题:
div高度无法自适应,如div中包含一个img,img会溢出,引起布局错乱,screenshot:
解决办法:
因为IE7已经支持!important,书写顺序以firefox的写在前面,IE7的写在中间,IE6的写在最后面。
#mainbody{
..
height:auto!important; /* IE7+FF 这句必须写在前面*/ min-height:400px; *height:400px; /*IE6*/
}