div center text align vertically code example
Example 1: css align text vertically
/* HTML: */
lorem ipsum
/* CSS: */
.text {
vertical-align: middle;
/*can take any value of:
baseline | sub | super | text-top | text-bottom | middle | top | bottom | | */
}
Example 2: how to make the text vertically centered in css
/*attention, i used this code because i had to center a div with text in another div without text*/
div{
position: relative;
top: 25%;
bottom: 25%;
}