CSS样式防止图片撑开固定样式
.img{ /*防止图片过大撑开*/
max-width:600px;/* Other */
_width:expression((this.offsetWidth > 600) ? "600px" : this.offsetWidth+"px" );/* IE */
}
max-width:600px;/* Other */
_width:expression((this.offsetWidth > 600) ? "600px" : this.offsetWidth+"px" );/* IE */
}