.item-student {
display: flex;
height: 100%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-pack: start;
}
.item-student .bot-student {
margin-top: auto;
}
.row-flex {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.flex-vertical {
display: flex;
justify-content: center;
position: relative;
min-height: 54px;
flex-direction: column;
}
flex-container {
display: flex; /* primary flex container */
flex-direction: row; /* horizontal alignment of flex items (default value; can be omitted) */
align-items: stretch; /* will apply equal heights to flex items (default value; can be omitted) */
height: 100%;
}
flex-item {
display: flex; /* nested flex container */
flex-direction: column; /* vertical alignment of flex items */
justify-content: center; /* center flex items vertically */
align-items: center; /* center flex items horizontally */
}
Text Text Text
Text Text Text
Text Text Text