How to scale an image with css to fill a div keeping aspect ratio?

后端 未结 6 1889
情深已故
情深已故 2021-02-13 15:10

I\'d like to fill a div with an img, keeping aspect ratio and stretching either width or height as much as required to fit in.

6条回答
  •  醉梦人生
    2021-02-13 15:38

    the following did the trick:

        width:100%;
        height:100%;
        object-fit: cover;
        overflow: hidden;
    

提交回复
热议问题