flex换行后,最后一排不满,布局变成两端对齐

.ant-list-items {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        &::after {
            content: '';
            flex: 1 1 auto;
        }
    }

使用 ::after 解决

原文地址:https://www.cnblogs.com/zhuxingqing/p/15081084.html