Maintaining aspect ratio with min/max height/width?

后端 未结 4 541
無奈伤痛
無奈伤痛 2020-12-28 14:19

I have a gallery on my site where users can upload images.

I would like the images to sit in a div that maintains its height, the images should be no larger than 500

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-28 15:11

    The only way that I know of to possibly accomplish this is by setting either the width or height to auto.

    #gallery{
        height: 500px;
    
        img{
            max-height: 500px;
            width: auto;
        }
    }
    

提交回复
热议问题