CSS center content inside div

后端 未结 7 902
离开以前
离开以前 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:33

    You just do CSS changes for parent div

    .parent-div { 
            text-align: center;
            display: block;
    }
    

提交回复
热议问题