0

CSS で次のコード スニペットを使用しています。

img {  
  /* Responsive images (ensure images don't scale beyond their parents) */

  max-width: 100%;
  /* Part 1: Set a maxium relative to the parent */

  width: auto\9;
  /* IE7-8 need help adjusting responsive images */

  height: auto;
  /* Part 2: Scale the height according to the width, otherwise you get stretching */

  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

ただし、 はmax-widthIE では機能せず、画像が拡大されます。修正/解決策はありますか?

4

1 に答える 1

0

これを試して:

width: inherit;

IE の問題を修正する必要があります。

于 2013-05-01T12:33:08.533 に答える