我正在寻找一种仅CSS的解决方案,以生成正方形缩略图,而不考虑图像比率:
.thumbnail {
width: 100px;
height: 100px;
overflow: hidden;
}
img {
width: 100%;
height: auto;
}
上面的示例仅在图像为纵向视图时才会创建方形缩略图,而横向视图图像将无法覆盖缩略图的整个高度。
是否有仅CSS的解决方案(除了将其设置为背景图片)可以做到这一点?
最佳答案
没有通常的background-image / background-size
方法执行此操作的唯一方法(我认为)是使用object-fit
。尽管它在IE中不起作用:
.thumbnail {
width: 150px;
height: 150px;
overflow: hidden;
}
img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* for demo only...*/
div {
margin-bottom: 15px;
}
.noscale {
width: auto;
height: auto;
}
<div class="thumbnail">
<img src="//placekitten.com/200/300">
</div>
<div class="thumbnail">
<img src="//placekitten.com/300/200">
</div>
<h4>
Images for reference:
</h4>
<img src="//placekitten.com/200/300" class="noscale">
<img src="//placekitten.com/300/200" class="noscale">
Browser Support #object-fit
关于html - 不管图像比例如何,都生成正方形缩略图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36965331/