CSS代码如下: img { /*-- 专门用于限定文章DIV下的图片 --*/ max-width: 680px; max-height: 700px; } *html img { /*兼容IE6*/ width: expression(this.width > 700 && this.width > this.height ? 680 : true); height: expression(this.height > 700 || this.height > this.width ? 700 : true); }