幅と高さが不明な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>
Max-widthは正常に機能していますが、max-heightは機能しません。