我在这里按照提示调整 ie8 中的图像大小:http ://blog.kurtschindler.net/post/flexible-dynamically-resizing-images-with-css
不过,我没有运气让它在我的网站上运行。我在这里写了一些简单的代码来消除任何复杂性,但我仍然没有得到任何结果。我必须缺少一些简单的东西。
<html>
<head>
<style>
.container img {
max-width: 100%;
height: auto;
width: auto; /*for ie8*/
}
.container {
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<img src="image.jpg" />
</div>
</body>
</html>