JSFiddle - React, Tailwind, and code Playground

by Ronny

HTML

<!-- Deprecated, should NOT be used usually (but fast and works) -->
<center>
<img src="http://lorempixum.com/100/100/">
</center>

<br>

<!-- Hacky, define the image itself as block-level so margin auto will center it -->
<img src="http://lorempixum.com/100/100/" style="margin: 0 auto; display: block;">

<br>

<!-- Great, use CSS text-align on a container -->
<div style="text-align: center;">
    <img src="http://lorempixum.com/100/100/">
</div>