Center child divs inside parent div

前端 未结 3 960
终归单人心
终归单人心 2020-12-13 05:11

I have a parent div that must stay at 100% with 3 child divs inside. I need to center the 3 child divs, but don\'t know how.

3条回答
  •  失恋的感觉
    2020-12-13 05:18

    Try using display: inline-block and text-align: center

    .parent {
        width: 100%;
        border: 1px solid blue;
        text-align: center;
    }
    
    .child {
        display: inline-block;  
        border: 1px solid red;
        margin: 2px;
    }
    

    jsFiddle: http://jsfiddle.net/qdHH3/3/

提交回复
热议问题