place-items

place-items: normal legacy | value | initial | inherit;


  • normal legacy - Default. The element's default place-items value. The default value for align-items is normal, and the default value for justify-items is legacy.
  • baseline - Items are positioned at the baseline of the container.
  • center - Align items to the center of the grid cell.
  • end - Align items at the end of the grid cell.
  • start - Align items at the start of the grid cell.
  • stretch - Stretches grid items to fill the grid container if the grid item sizes are not set.
  • initial - Sets this property to its default value.
  • inherit - Inherits this property from its parent element.