JSFiddle - React, Tailwind, and code Playground

HTML

<div class="divTable">
    <div class="innerDivTable">
        <img src="http://www.vzdrmc.lt/vzd/m/m_images/wfiles/fp_100x100.jpg"/>
    </div>
</div>

CSS

.divTable {
    width: 200px; /* purely for demonstration */
    height: 200px; /* purely for demonstration */
    display: table;
    border: 1px solid black;
}

.innerDivTable {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}