Answers for "vertical align text"

CSS
15

css align items vertical center

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

text vertical align css

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style type="text/css">
      div {
        display: table-cell;
        width: 250px;
        height: 200px;
        vertical-align: middle;
      }
    </style>
  </head>
  <body>
    <div>Vertically aligned text</div>
  </body>
</html>
Posted by: Guest on March-12-2020
11

css vertical align

.top-align {
	vertical-align: top;
}  

.center-align {
  	vertical-align: middle;
}
Posted by: Guest on February-15-2020
3

vertical align css

.container{
  display: table;
}

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

Browse Popular Code Answers by Language