css vertically align text in 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: center with css

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

Example 3: centering horizontally

div.center{display:block;margin:auto;width:50%;}
p.center{text-align:center;}

Example 4: vertical align center text inside div

.center {
  height: 309px;
  line-height: 309px; /* same as height! */
}

Tags:

Misc Example