How to vertically align paragraphs of text using flex
Occasionally I am looking for a way to align a block of text, perhaps in a column next to a picture, so that it is always aligned to the image in the center.
/* Vertical align text elements */
.div-container {
display: flex;
flex-direction: column;
justify-content: center;
}