How to center align a grid of divs in a flex container?

后端 未结 2 439
情话喂你
情话喂你 2021-01-22 18:44

I am trying to centre align the 3 column grid (which is made up of 6 flex- items) placed in a flex-container div. (Refer to image attached

2条回答
  •  失恋的感觉
    2021-01-22 19:43

    I would try setting margin:auto; `

    .flex-item {
        width: 23%;
        height: 360px;
        margin: 10px;
        order: 1;
        border-radius: 3px;
        padding: 0 10px 40px 10px;
        margin:auto;
    }`
    

提交回复
热议问题