Flexbox - justify-content: center and align-items: center not working?

前端 未结 2 1295
孤城傲影
孤城傲影 2021-01-23 02:27

I have a pretty basic flex setup and, for whatever reason, the div in question won\'t vertically center inside its parent tag. You can see the isolated test case below.

2条回答
  •  难免孤独
    2021-01-23 03:02

    You need to @include flex on your col-inner (line 40 of your scss), as align-items and justify-content only work on the flexbox element (see this handy guide).

    Then to align the .col element within the big white box you can add justify-content: center to .likeness-rank-table-body on line 47 of your scss.

提交回复
热议问题