IE 11 处理 object-fit: contain 问题
2020-08-18 本文已影响0人
Axiba
<div class={imgWrap}>
<img src={imgSrc} alt=''/>
</div>
.imgWrap {
position: relative;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
img {
object-fit: contain;
width: 100%;
max-width: 100%;
max-height: 100%;
}