JSFiddle - React, Tailwind, and code Playground

by Vaibhav Mehta

HTML

<div class="full_width">
    <div class="center_me"></div>
</div>

CSS

.full_width {
    background: #aaa;
    min-height: 100px;
}

.center_me {
    background: blue;
    min-height: 100px;
    margin: auto;
    width: 300px;
}