Left aligned and centered grid with flexbox

后端 未结 7 2114
半阙折子戏
半阙折子戏 2020-12-30 02:21

I\'d like to implement a responsive grid-like layout using flexbox (without media queries). There can be variable number of elements in the grid. Each item should have fixed

7条回答
  •  北海茫月
    2020-12-30 03:05

    I haven't managed to achieve this behavior using flexbox. But it's pretty simple with CSS Grid. You need to apply justify-content: center to the container.

    Example on CodePen

提交回复
热议问题