Use:
h1 {_x000D_
margin: 0;_x000D_
position: absolute;_x000D_
left: 50%;_x000D_
top: 50%;_x000D_
transform: translate(-50%, -50%);_x000D_
}_x000D_
.container {_x000D_
height: 200px;_x000D_
width: 500px;_x000D_
position: relative;_x000D_
border: 1px solid #eee;_x000D_
}
_x000D_
<div class="container">_x000D_
<h1>Vertical align text</h1>_x000D_
</div>
_x000D_
With this trick, you can align anything if you don't want to make it center add "left:0" to align left.