写在ie6里的点滴

IE6的那些破事:

1 .是不支持position:fixed属性;

解决方法:

_position:absolute;

_top:expression(documentElement.scrollTop + 数值 + “px”);

2. 不支持max-width属性;

解决方法:

max-height:240px;

_width:expression(this.offsetWidth>240 ? "240px" : "auto")

3.设置float的div在ie下margin加倍的问题;

解决方法:

在设置float的div样式里加display:inline;




你可能感兴趣的:(写在ie6里的点滴)