Make an image to fit its parent dimensions

后端 未结 6 1418
梦如初夏
梦如初夏 2020-12-14 00:25

I have some photos which have big sizes, I would like to set them to the Parent\'s dimension size. If one time the parent dimension is 1200x800, I would like to set the phot

6条回答
  •  无人及你
    2020-12-14 01:07

    try to use the max-width property, this might give a bug in earlier versions IE though

    #custom img {
        max-width: 100%;
        max-height: 100%;
    }
    

提交回复
热议问题