1Stretch vs Center
'stretch' is the default and makes items as tall as the container. 'center' keeps them at their natural height but centered.
Learn about Align Items in this comprehensive CSS3 web design tutorial. Learn how to position items perpendicular to the main flow.
UNLOCK NODES BY LEARNING NEW TAGS.
Master vertical positioning in Flexbox. Control how child elements distribute and align perpendicular to the primary layout flow.
'stretch' is the default and makes items as tall as the container. 'center' keeps them at their natural height but centered.

Pascual Vila
Frontend Instructor // Code Syllabus
The default cross-axis alignment. Forces all flex items to stretch and fill the absolute height (or width in a column) of their parent container.
align-items: stretch;Suspends the flex items perfectly in the middle of the container's cross axis, maintaining their natural content height.
align-items: center;Aligns flex items based on the invisible typographic baseline of their internal text content, perfect for varying font sizes.
align-items: baseline;Forces all flex items to flush against the ending boundary of the cross axis (typically the bottom).
align-items: flex-end;