Now the flexbox solution is a very easy way for modern browsers, so I recommend this for you:
.container{_x000D_
display: flex;_x000D_
align-items: center;_x000D_
justify-content: center;_x000D_
height: 100%;_x000D_
background:green;_x000D_
}_x000D_
_x000D_
body, html{_x000D_
height:100%;_x000D_
}
_x000D_
<div class="container">_x000D_
<div>Div to be aligned vertically</div>_x000D_
</div>
_x000D_