Answers for "html align text in vertical center of div"

CSS
15

css align items vertical center

.parent {
  display: flex;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on October-31-2020
23

center with css

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on January-03-2020
0

vertical align text inside div

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

Code answers related to "html align text in vertical center of div"

Browse Popular Code Answers by Language