flex最后一行靠左
参考: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; } }
参考: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; } }