CSS force image resize and keep aspect ratio

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

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

\"\"

23条回答
  •  迷失自我
    2020-11-22 10:36

    I think, in finally that this is the best solution, easy and simple:

    img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }
    

提交回复
热议问题