JSFiddle - React, Tailwind, and code Playground

by Deepak Manwal

HTML

<div class="outer" style="margin: 0 auto">
    <div class="inner" style="background: red;">
        <p>Lorem Ipsum</p>
    </div>
    <div class="inner" style="background: red;">
        <p>Lorem Ipsum</p>
    </div>
</div>

CSS

.outer{
    display:table;
    border-spacing:10px;
}
.inner{
    display:table-cell;
}