我有一个这样的html页面:
<html>
<head>
<style>
.main {
max-width:500px;
min-height:500px;
margin:auto;
}
.image-container {
width:100%;
background-color:black;
min-height: 200px;
height:300px;
}
img {
object-fit: contain;
height:200px;
}
</style>
</head>
<body>
<div class="main">
<div class="image-container">
<img src="https://i.gyazo.com/3a4b9b23d8d1a179b75472d58bc55fe3.jpg" style="width:100%"/>
</div>
</div>
</body>
</html>
这个对象非常适合 google chrome 和 firefox ,但不幸的是不在 IE 中。我不想用作背景图像,因为我将来会在轮播中使用此图像?有没有其他方法可以让我在固定高度的 div 中放置图像而不会拉伸和溢出?注意:对象适合:包含完全满足我的要求,但在 IE 上失败。