CSS force image resize and keep aspect ratio

前端 未结 23 1112
野趣味
野趣味 2020-11-22 10:04

I am working with images, and I ran across a problem with aspect ratios.

\"\"

23条回答
  •  独厮守ぢ
    2020-11-22 11:01

    Here is a solution :

    img {
       width: 100%;
       height: auto;
       object-fit: cover;
    }
    

    This will make sure the image always covers the entire parent (scaling down and up) and keeps the same aspect ratio.

提交回复
热议问题