我在 div 内得到一个未知宽度和高度的图像。我想要一个具有最大宽度或高度的图像- 比如background-size: contain
.
这是我的源代码:
CSS
.box {
display: block;
position: fixed;
height: auto;
bottom: 0;
top: 0;
left: 0;
right: 0;
margin-top: 50px;
margin-bottom: 50px;
margin-right: 80px;
margin-left: 80px;
background-color: white;
border: solid 2px blue;
}
.box img {
max-width: 100%;
max-height: 100%;
}
HTML
<div class="box">
<img src="myimage.jpg">
</div>
最大宽度运行良好,但最大高度不起作用。