Vertically and Horizontally Center Image inside a Div, if you don't know Image's Size?

前端 未结 12 1046
庸人自扰
庸人自扰 2020-12-29 10:28

If I have a fixed sized container div, and an unknown sized image, how do I horizontally and vertically center it?

  • using pure css
  • using JQuery if css
12条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-29 11:04

    You could use background-position for that.

    #your_div {
        background-position: center center;
        background-image: url('your_image.png');
    }
    

提交回复
热议问题