1. 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.

  2. CSS Flexible Box Layout Module

    Method of positioning elements in horizontal or vertical stacks. Support includes all properties prefixed with `flex`, as well as `display: flex`, `display: inline-flex`, `align-content`, `align-items`, `align-self`, `justify-content` and `order`.

  3. 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.

  4. css property: justify-content

  5. css property: justify-content: supported in flex layout

  6. css property: justify-content: supported in flex layout: `left` and `right`

  7. css property: justify-content: supported in flex layout: `safe` and `unsafe`

  8. css property: justify-content: supported in flex layout: `space-evenly`

  9. css property: justify-content: supported in flex layout: `start` and `end`

  10. css property: justify-content: supported in flex layout: `stretch`

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