2

所以我不确定这是一个错误还是我做错了什么..

在 SVG 中使用 max-width 时,图像在 IE 9,10 中会失真

下面的示例(当然必须在 IE 中查看...)

http://codepen.io/Unroku/pen/nEgza

4

1 回答 1

1

也设置最大高度。

.papa {
  width: 250px;
}

.mama {
  max-width: 250px; 
  max-height: 250px;
}
img {
  vertical-align: top;
}
body {
  padding: 20px; 
}
于 2013-06-27T21:50:05.693 回答