Vertical align - flex
by andrey90vs
CSS
.container-flex {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-around;
align-items: center; /* vertical-align */
align-content: center;
}
by andrey90vs
.container-flex {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-around;
align-items: center; /* vertical-align */
align-content: center;
}