flex最后一行靠左

一杯浊酒敬残月,半生飘零是殇年 / 2023-08-14 / 原文

参考:https://blog.csdn.net/Dongfang_project/article/details/130114233

加after伪元素

  .tag-view {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: space-between;

    &::after {
      content: '';
      flex: auto;
    }
  }