我想在所有 IE 浏览器中缩放图像。
我的代码:
<div class="outer"><img src="text.png" /></div>
CSS
.outer {
position:absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
text-align: center;
}
img {
min-height: 100%;
}
像这样 img-Tag 使用宽度进行自动缩放。但这在 IE 中不起作用。图像只是垂直缩放。
有谁能够帮我 ?