JSFiddle - React, Tailwind, and code Playground

by shimmy

HTML

<div class="wrapper">
    <a href="#" class="anchor">
        <img src="http://bit.ly/1mFH8AW"></img>
    </a>
</div>

CSS

.wrapper {
    background: black;
    width: 500px;
    height: 500px;
    position: relative;
}
.anchor {
}
.anchor > img {
    height: 100px;
    width: 100px;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    margin: auto;
}