图片尺寸过大时会撑开页面解决方法


/* 防止img过大撑开 */
img{
max-width:1002px;/* Other */
_width:expression((this.offsetWidth > 1002) ? "1002px" : this.offsetWidth+"px" );/* IE */
}

你可能感兴趣的:(html)