Skip to content

CSS 图片比例设置方法

Published: at 03:12 AMSuggest Changes

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>

Previous Post
CSS border-radius 属性详解
Next Post
全文搜索技术调研