1. CSS display: contents

    `display: contents` causes an element's children to appear as if they were direct children of the element's parent, ignoring the element itself. This can be useful when a wrapper element should be ignored when using CSS grid or similar layout techniques.

  2. CSS Grid Layout (level 1)

    Method of using a grid concept to lay out content, providing a mechanism for authors to divide available space for layout into columns and rows using a set of predictable sizing behaviors. Includes support for all `grid-*` properties and the `fr` unit.

  3. CSS Subgrid

    Feature of the CSS Grid Layout Module Level 2 that allows a grid-item with its own grid to align in one or both dimensions with its parent grid.

  4. CSS justify-content: space-evenly

    The "space-evenly" value for the `justify-content` property distributes the space between items evenly. It is similar to space-around but provides equal instead of half-sized space on the edges. Can be used in both CSS flexbox & grid.

  5. css at-rule: `@media`: `grid` media feature

  6. css property: align-content: supported in grid layout

  7. css property: align-items: supported in grid layout

  8. css property: align-items: supported in grid layout: `start` and `end`

  9. css property: align-self: supported in grid layout

  10. css property: column-gap: supported in grid layout

  11. css property: display: grid

  12. css property: display: inline-grid

  13. css property: gap: supported in grid layout

  14. css property: gap: supported in grid layout: `calc()` values

  15. css property: gap: supported in grid layout: `<percentage>` values

  16. css property: grid-area

  17. css property: grid-auto-columns

  18. css property: grid-auto-flow

  19. css property: grid-auto-rows

  20. css property: grid-column

  21. css property: grid-column-end

  22. css property: grid-column-start

  23. css property: grid-row

  24. css property: grid-row-end

  25. css property: grid-row-start

  26. css property: grid-template

  27. css property: grid-template-areas

  28. css property: grid-template-columns

  29. css property: grid-template-columns: animation of tracks

  30. css property: grid-template-columns: `fit-content()`

  31. css property: grid-template-columns: `masonry`

  32. css property: grid-template-columns: `minmax()`

  33. css property: grid-template-columns: `repeat()`

  34. css property: grid-template-columns: `subgrid`

  35. css property: grid-template-rows

  36. css property: grid-template-rows: animation of tracks

  37. css property: grid-template-rows: `fit-content()`

  38. css property: grid-template-rows: `masonry`

  39. css property: grid-template-rows: `minmax()`

  40. css property: grid-template-rows: `repeat()`

  41. css property: grid-template-rows: `subgrid`

  42. css property: justify-content: supported in grid layout

  43. css property: justify-items: supported in grid layout

  44. css property: justify-self: supported in grid layout

  45. css property: place-content: supported in grid layout

  46. css property: place-items: supported in grid layout

  47. css property: place-self: supported in grid layout

  48. css property: row-gap: supported in grid layout