Center Oversized Image in Div

前端 未结 12 1631
予麋鹿
予麋鹿 2020-11-27 08:52

I have been trying to sort out how to center an oversized image within a div using css only.

We are using a fluid layout, so the width of the image containers varies

12条回答
  •  粉色の甜心
    2020-11-27 09:23

    Do not use fixed or an explicit width or height to the image tag. Instead, code it:

          max-width:100%;
          max-height:100%;
    

    ex: http://jsfiddle.net/xwrvxser/1/

提交回复
热议问题