CSS 设置图片比例
<div class="container">
<img src="https://img-blog.csdnimg.cn/2021012411095991.png" alt="" />
</div>
<style>
.container {
width: 100px;
height: 100px;
border: 1px solid;
overflow: hidden;
}
img {
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
另一个方法 aspect-ratio
<div class="container">
<img src="https://img-blog.csdnimg.cn/2021012411095991.png" alt="" />
</div>
<style>
.container {
width: 100px;
height: 100px;
border: 1px solid;
overflow: hidden;
}
img {
width: 100%;
height: 100%;
aspect-ratio: 1;
}
</style>