img图片铺满父元素

引入多张尺寸不同的图片如果设置尺寸会导致图片变形,解决方法

<div class="template_image">
       <img :src="$store.state.fileUploadUrl+item.thumb" alt="" />
</div>
.template_image{
         100%;
        height: 170px;
        position:relative;
        overflow: hidden;
    }
    .template_image img{
         100%;
        height: 170px;
        object-fit:cover;
    }

  

原文地址:https://www.cnblogs.com/xhrr/p/15524511.html