place items center code example

Example 1: how to align items in css

div
{
  display:flex;
  align-items:center;
  justify-content:center;
  
}

Example 2: align items center css

.parent_div
{
  display:flex;
  align-items:center;
}

Example 3: place-items css property

This property is a shorthand for the following CSS properties:
1-align-items
2-justify-items

Possible values => start|flex-start|self-start|end|flex-end|self-end|
right|left|center|space-around|space-between|space-evenly|baseline|stretch

Example 4: css align-items center

div {
  display: flex;
  align-items: center;
}

Tags:

Css Example