CSS force image resize and keep aspect ratio

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

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

\"\"

23条回答
  •  Happy的楠姐
    2020-11-22 10:45

    Just add this to your css, It will automaticly shrink and expand with keeping the original ratio.

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

提交回复
热议问题