JSFiddle - React, Tailwind, and code Playground
by Baumr
HTML
<div><p>Sample text saying stuff in the middle...</p>
<small>...small element gets in the middle too!</small></div>
CSS
p, small { text-align: center; }
div { background: #ccc; padding: 40px 10px 40px 10px;}
/* FIX */
small { display: block; }