P粉1916105802023-08-17 00:28:09
要解决这个问题,您可以使用object-fit
CSS属性。object-fit属性指定了图像应如何调整大小以适应其容器。cover值将调整图像大小以填充整个容器,同时保持其纵横比。
<span class="bg-dark d-flex justify-content-center align-items-center"> <img :src="slotProps.item.itemImageSrc" :alt="slotProps.item.alt" style="object-fit: cover; max-width: 100%; max-height: 100%" /> </span>