Answers for "how to align text in the middle of a div vertically"

CSS
0

vertical align text inside div

text {
  	line-height: 100px; /*size of parent div*/ 
}
Posted by: Guest on April-29-2020
-1

How do I vertically center text with CSS?

div {
  height: 100px;
  line-height: 100px;
  text-align: center;
  border: 2px dashed #f69c55;
}

<div>
  Hello World!
</div>
Posted by: Guest on July-26-2021

Code answers related to "how to align text in the middle of a div vertically"

Browse Popular Code Answers by Language