grid-template

  1. /* 值为关键词 */
  2. grid-template: none;
  3. /* 为 grid-template-rows / grid-template-columns */
  4. grid-template: 100px 1fr / 50px 1fr;
  5. grid-template: auto 1fr / auto 1fr auto;
  6. grid-template: [linename] 100px / [columnname1] 30% [columnname2] 70%;
  7. grid-template: fit-content(100px) / fit-content(40%);
  8. /* 为 grid-template-areas grid-template-rows / grid-template-column */
  9. grid-template: "a a a"
  10. "b b b";
  11. grid-template: "a a a" 20%
  12. "b b b" auto;
  13. grid-template: [header-top] "a a a" [header-bottom]
  14. [main-top] "b b b" 1fr [main-bottom]
  15. / auto 1fr auto;
  16. /* 为全局值 */
  17. grid-template: inherit;
  18. grid-template: initial;
  19. grid-template: unset;