Centering - Using position
Centering - Using position ~10 mins

Using position

  <div class="parent">
<img class="center" src="http://lorempixel.com/400/200/" />
</div
  .parent {
position: relative;
height: 500px;
}
.center {
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
}