JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div>
    <img src="http://picsum.photos/200/200" alt="">
</div>

CSS

div {
    width: 50%;
    text-align: center;
}
img {
   display: block;
   margin: auto;
   max-width: 100%;
   height: auto;
}