scss 带有CSS网格增强功能的Flexbox行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 带有CSS网格增强功能的Flexbox行相关的知识,希望对你有一定的参考价值。

  .holder {
    @include breakpoint($breakpoint--main) {
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      justify-content: space-between;

      @supports (display: grid) {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
      }
    }
  }

以上是关于scss 带有CSS网格增强功能的Flexbox行的主要内容,如果未能解决你的问题,请参考以下文章