JSFiddle - React, Tailwind, and code Playground

HTML

<div class="parent">
    <img  src="http://dummyimage.com/200x200/000/fff&text=image"  />
</div>

CSS

.parent{
  height:400px;
  border:1px solid red;
  text-align: right;
}

.parent img {
  position: relative;
  top: 50%;
  margin-top: -100px;
}