25宫格

  .icon-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 划分为5列 */
    grid-template-rows: repeat(5, 1fr); /* 划分为5行 */
    gap: 12px; /* 间隔为12像素 */
    .icon-item {
      width: 48px;
      height: 48px;
      border-radius: 6px;
      background-repeat: no-repeat;
    }
  }

  

  .icon-list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 12px);
    .icon-item {
      width: 48px;
      height: 48px;
      border-radius: 6px;
      background-repeat: no-repeat;
      margin-right: 12px;
      margin-bottom: 12px;
    }
  }

  

posted on 2023-06-02 15:04  稳住别慌  阅读(63)  评论(0编辑  收藏  举报