How can I fill a div with an image while keeping it proportional?

前端 未结 15 1397
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-28 00:56

I found this thread — How do you stretch an image to fill a

while keeping the image's aspect-ratio? — that is not entirely the thing that I want.

I h

15条回答
  •  醉梦人生
    2020-11-28 01:22

    Just fix the height of the image & provide width = auto

    img{
        height: 95vh;
        width: auto;
    }
    

提交回复
热议问题