JSFiddle - React, Tailwind, and code Playground

by danield770

HTML

<div>
    <img src="http://lorempixel.com/50/50/food" alt="" />
</div>

CSS

div {
    width: 200px;
    height: 200px;
    border: 1px solid green;
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
}