使用flex布局,多行,每行平均5个item,每个item之间有间隙

25 阅读1分钟

"```markdown

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item {
  width: calc(20% - 4px); /* 20% width with 4px margin */
  margin-bottom: 20px;
}
```"