CSS center content inside div

后端 未结 7 897
离开以前
离开以前 2020-12-23 13:15

I need to center html content inside a div class=\"partners\" (top div with 2 images). As you can see from the image below (it floats left instead of center of the div):

7条回答
  •  自闭症患者
    2020-12-23 13:49

    do like this :

    child{
        position:absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    

提交回复
热议问题