1.parent {
2 display: flex;
3 justify-content: center;
4 align-items: center;
5}
1.flex-center-vertically {
2 display: flex;
3 justify-content: center;
4 flex-direction: column;
5 height: 400px;
6}
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Title of the document</title>
5 <style type="text/css">
6 div {
7 display: table-cell;
8 width: 250px;
9 height: 200px;
10 vertical-align: middle;
11 }
12 </style>
13 </head>
14 <body>
15 <div>Vertically aligned text</div>
16 </body>
17</html>