网格间距 - gap

使用 gap 属性控制网格项目之间的间距

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
1
2
3
4
5
6