align-items[row]
align-items [row]
.parent {
align-items: stretch /* default */
or flex-start
or flex-end
or center
or baseline
}.flex-container {
display: flex;
height: 200px;
align-items: center; }.flex-container {
display: flex;
height: 200px;
align-items: flex-start; }Last updated