The value of the center property of align-items in CSS
The center value allows you to center elements along the cross axis:
.parent {
display: flex;
flex-direction: row;
align-items: center; /* center on the secondary axis */
}
Result of code execution: