25宫格

发布时间 2023-06-02 15:07:46作者: 稳住别慌
  .icon-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 划分为5列 */
    grid-template-rows: repeat(5, 1fr); /* 划分为5行 */
    gap: 12px; /* 间隔为10像素 */
    .icon-item {
      width: 48px;
      height: 48px;
      border-radius: 6px;
      background-repeat: no-repeat;
    }
  }