如:
代码如下 | 复制代码 |
img{max-width:100px;max-height:100px;} img{min-width:100px;min-height:100px;} |
对于IE6及其以下版本的浏览器,则可以利用其支持的expression属性,在css code中嵌入javascript code来实现图片的缩放,
如下:
代码如下 | 复制代码 |
.thumbImage {max-width: 100px;max-height: 100px;} /* for Firefox & IE7 */ * html .thumbImage { /* for IE6 */ width: expression(this.width > 100 && this.width > this.height ? 100 : auto); height: expression(this.height > 100 ? 100 : auto); } |
时间: 2024-09-21 08:40:33