How to center image vertically?

前端 未结 5 1320
南方客
南方客 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:47

    in a parent div id parentDiv .. set image on background

    #parentDiv
    {
    background:url(image.png) no-repeat center center;
    height:500px;
    width:500px;
    }
    

    or in child div do this thing...

    position:absolute;
       top:50%;
    

提交回复
热议问题