CSS force image resize and keep aspect ratio

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

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

\"\"

23条回答
  •  无人及你
    2020-11-22 10:49

    You can use this:

    img { 
        width: 500px; 
        height: 600px; 
        object-fit: contain; 
        position: relative; 
        top: 50%; 
        transform: translateY(-50%); 
    }
    

提交回复
热议问题