Center child divs inside parent div

前端 未结 3 963
终归单人心
终归单人心 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:28

    Flex solution: set justify-content: center; to the parent element:

    .parent {
      display: flex;
      justify-content: center;
      /* align-items: center; /* To align vertically, if needed */
    }
    
    .parent, .child { border: 1px solid #000; }
    child1
    child2 - center us child divs! :)
    child3

提交回复
热议问题