css vertical align text in center of div code example

Example 1: css align center vertical and horizontal

.parent-class {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

Example 2: css center text in div vertically

<!DOCTYPE html>
<html>
   <head>
      ...
      <style type="text/css">
         div{
         width: 200px;
         height: 200px;
         border: solid green;
         display: table-cell;
         vertical-align: middle;
         }
      </style>
   </head>
   <body>
      <div>Vertikal ausgerichteter Text</div>
   </body>
</html>

Example 3: vertical align center text inside div

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

Tags:

Css Example