IE6下min-width和max-width
IE6下min-width和max-width

IE6下min-width和max-width

IE6下支持CSS:max-width(最小宽度)

.hiheng{_width:expression((document.documentElement.clientWidth||document.body.clientWidth)>1000?"1000px":"");}

IE6下支持CSS:min-width(最大宽度)

.hiheng{_width:expression((document.documentElement.clientWidth||document.body.clientWidth)<100?"100px":"");}

IE6下同时支持min-width & max-width

.hiheng{_width:expression(this.scrollWidth > 1000 ? "1000px" : (this.scrollWidth < 100? "100px" : "auto"));}

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注