vertical align text in a div code example
Example 1: css align text vertically
/* HTML: */
<div class="text">
lorem ipsum
</div>
/* CSS: */
.text {
vertical-align: middle;
/*can take any value of:
baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length> */
}
Example 2: css vertical center
/*Remove comment to become a better programmer. */
/* No Flexbox */
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
/* With Flexbox */
.parent {
display: flex;
flex-direction: column;
justify-content: center;
}
Example 3: vertical align center text inside div
.center {
height: 309px;
line-height: 309px; /* same as height! */
}