JSFiddle - React, Tailwind, and code Playground

by c_vilander

HTML

<div class="wrapper">
    <div class="box"></div>
</div>

CSS

.wrapper {
    width: 500px;
    margin: 0 auto;
    border: 1px solid black;
}

.box {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border: 1px solid red;
}