How to center image vertically?

前端 未结 5 1324
南方客
南方客 2021-01-14 12:55

I am looking for a way to center the image vertically, something that is similar to text-align center. text-align center is kinda efficient since y

5条回答
  •  旧巷少年郎
    2021-01-14 13:38

    All in the middle ...

    #container { position: relative; width:200px; height:200px; background:#040; } #container #img { background: url("url_to_image.jpg") no-repeat center center; position:absolute; top:0; bottom:0; left:0; right:0; }

    http://jsfiddle.net/djwave28/PD6J4/

提交回复
热议问题