JSFiddle - React, Tailwind, and code Playground

by kevinPHPkevin

HTML

<div>
    This div in centrally aligned yet it does not have a sett width. This is due to display:table being set in the css
</div>

CSS

div {
   display: table;
    margin: 0 auto;
    border: thin solid red;
}