Answers for "css middle vertical-align"

CSS
3

vertical align css

.container{
  display: table;
}

.div-inside-container{
  display: table-cell;
  vertical-align: middle;
}
Posted by: Guest on June-02-2020
0

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%;
}
Posted by: Guest on January-20-2021

Code answers related to "css middle vertical-align"

Browse Popular Code Answers by Language