gpt4 book ai didi

css - 如何使用 img-fluid,设置自定义高度而不变形图像?

转载 作者:行者123 更新时间:2023-11-27 23:35:55 25 4
gpt4 key购买 nike

我有一张流畅的图片 (.img-fluid),我将高度设置为 245px,宽度始终为 100%。当我在小型设备上查看我的页面时,高度工作得很好,但图像看起来在宽度上被挤压了。我的图像必须始终看起来正确,而不是被挤压。

enter image description here

<div class="product-image">
<img src="https://static.reverb-assets.com/assets/homepage/open-graph-
7c32c7390769b2d0ab9366d1547b0a829b1c44f2eb991a9b0d1b3f59d0e62bf4.jpg"
alt="Foto del producto" class="img-fluid">
</div>
.product-image {
width: 100%;
height: 245px;
}

.product-image .img-fluid {
max-width: 100%;
height: 100%;
}

最佳答案

看起来 object-fit CSS 属性应该符合您的需要。

Reference .

img {
width: 100%;
height: 245px;
}

.img--cover {
object-fit: cover;
}

.img--contain {
object-fit: contain;
}
<div>
<img src="https://www.talentz.net/wp-content/uploads/CG10-2.jpg" alt="Foto del producto" class="img--cover">
</div>
<div>
<img src="https://www.talentz.net/wp-content/uploads/CG10-2.jpg" alt="Foto del producto" class="img--contain">
</div>

关于css - 如何使用 img-fluid,设置自定义高度而不变形图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57243464/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com