center the text vertically css 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 align center vertical and horizontal
.parent-class {
display: flex;
align-items: center;
justify-content: space-around;
}
Example 3: how to horizontal center a div in css
#inner {
width: 50%;
margin: 0 auto;
}