標準ブラウザ (Firefox など) または最新の IE7 ブラウザの場合、特定のサイズに縮小または拡大します。
max-width、max-height、または min-width、min-height の CSS プロパティを使用するだけです。例:
img{max-width:100px;max-height:100px;}
img{最小幅:100px;最小高さ:100px;}
IE6 以下のブラウザの場合、サポートされている式属性を使用して、CSS コードに JavaScript コードを埋め込むことができます。
画像を実現するには scaling.thumbImage
{max-width: 100px;max-height: 100px;} /* Firefox および IE7 の場合 */
* html .thumbImage { /* IE6 の場合 */
width: 式(this.width > 100 && this.width > this.height ? 100 : auto);
高さ: 式(this.height > 100 ? 100 : auto);
}