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-width它不适用于 IE,并且图像会放大。任何修复/解决方案?

4

1 回答 1

0

尝试这个:

width: inherit;

应该修复任何 IE 问题。

于 2013-05-01T12:33:08.533 回答